本文整理汇总了C#中BELInteger.Random方法的典型用法代码示例。如果您正苦于以下问题:C# BELInteger.Random方法的具体用法?C# BELInteger.Random怎么用?C# BELInteger.Random使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类BELInteger
的用法示例。
在下文中一共展示了BELInteger.Random方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: DELIntegerRandomMaxValueTest
public void DELIntegerRandomMaxValueTest()
{
BELInteger source = new BELInteger(0);
int maxValue = int.MaxValue;
int minValue = 0;
int result = source.Random(1, maxValue - 1);
Assert.Less(result, maxValue, "1 - Checking that BELInteger(0).Random(1, " + ((int)(maxValue - 1)).ToString() + ") < " + ((int)(maxValue - 1)).ToString());
Assert.Greater(result, minValue, "1 - Checking that BELInyeger(0).Random(1, " + ((int)(maxValue - 1)).ToString() + ") > 0");
result = source.Random(1, maxValue - 1);
Assert.Less(result, maxValue, "2 - Checking that BELInteger(0).Random(1, " + ((int)(maxValue - 1)).ToString() + ") < " + ((int)(maxValue - 1)).ToString());
Assert.Greater(result, minValue, "2 - Checking that BELInyeger(0).Random(1, " + ((int)(maxValue - 1)).ToString() + ") > 0");
result = source.Random(1, maxValue - 1);
Assert.Less(result, maxValue, "3 - Checking that BELInteger(0).Random(1, " + ((int)(maxValue - 1)).ToString() + ") < " + ((int)(maxValue - 1)).ToString());
Assert.Greater(result, minValue, "3 - Checking that BELInyeger(0).Random(1, " + ((int)(maxValue - 1)).ToString() + ") > 0");
result = source.Random(1, maxValue - 1);
Assert.Less(result, maxValue, "4 - Checking that BELInteger(0).Random(1, " + ((int)(maxValue - 1)).ToString() + ") < " + ((int)(maxValue - 1)).ToString());
Assert.Greater(result, minValue, "4 - Checking that BELInyeger(0).Random(1, " + ((int)(maxValue - 1)).ToString() + ") > 0");
result = source.Random(1, maxValue - 1);
Assert.Less(result, maxValue, "5 - Checking that BELInteger(0).Random(1, " + ((int)(maxValue - 1)).ToString() + ") < " + ((int)(maxValue - 1)).ToString());
Assert.Greater(result, minValue, "5 - Checking that BELInyeger(0).Random(1, " + ((int)(maxValue - 1)).ToString() + ") > 0");
}
示例2: BELIntegerRandomRangeTest
public void BELIntegerRandomRangeTest()
{
BELInteger source = new BELInteger(0);
int maxValue = 11;
int minValue = 0;
int result = source.Random(1, 10);
Assert.Less(result, maxValue, "1 - Checking that BELInteger(0).Random(1, 10) < 10");
Assert.Greater(result, minValue, "1 - Checking that BELInyeger(0).Random(1, 10) > 0");
result = source.Random(1, 10);
Assert.Less(result, maxValue, "2 - Checking that BELInteger(0).Random(1, 10) < 10");
Assert.Greater(result, minValue, "2 - Checking that BELInyeger(0).Random(1, 10) > 0");
result = source.Random(1, 10);
Assert.Less(result, maxValue, "3 - Checking that BELInteger(0).Random(1, 10) < 10");
Assert.Greater(result, minValue, "3 - Checking that BELInyeger(0).Random(1, 10) > 0");
result = source.Random(1, 10);
Assert.Less(result, maxValue, "4 - Checking that BELInteger(0).Random(1, 10) < 10");
Assert.Greater(result, minValue, "4 - Checking that BELInyeger(0).Random(1, 10) > 0");
result = source.Random(1, 10);
Assert.Less(result, maxValue, "5 - Checking that BELInteger(0).Random(1, 10) < 10");
Assert.Greater(result, minValue, "5 - Checking that BELInyeger(0).Random(1, 10) > 0");
}