本文整理汇总了C#中Engine.Scout方法的典型用法代码示例。如果您正苦于以下问题:C# Engine.Scout方法的具体用法?C# Engine.Scout怎么用?C# Engine.Scout使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Engine
的用法示例。
在下文中一共展示了Engine.Scout方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ReturnOnlyLocationsWithGravityLessThan105PercentOfStandard
public void ReturnOnlyLocationsWithGravityLessThan105PercentOfStandard()
{
var mocks = new Rhino.Mocks.MockRepository();
var db = (null as ILocationRepository).Create(mocks);
int locationCount = 100.GetRandom(50);
var allLocations = new List<Location>();
for (int i = 0; i < locationCount; i++)
allLocations.Add((null as Location).Create());
TestContext.WriteLine("{0} locations in data store", allLocations.Count());
Rhino.Mocks
.Expect.Call(db.GetLocations())
.Repeat.Any()
.Return(allLocations);
mocks.ReplayAll();
var target = new Engine(db);
var actual = target.Scout();
TestContext.WriteLine("{0} locations returned from target", actual.Count());
foreach (var location in actual)
Assert.IsTrue(location.Gravity < 1.05);
mocks.VerifyAll();
}
示例2: ThrowAnArgumentNullExceptionIfConstructedWithNullRepository
public void ThrowAnArgumentNullExceptionIfConstructedWithNullRepository()
{
var target = new Engine(null);
var actual = target.Scout();
}
示例3: ReturnsAnAcceptableLocationWhenOneIsAvailable
public void ReturnsAnAcceptableLocationWhenOneIsAvailable()
{
var mocks = new Rhino.Mocks.MockRepository();
var db = (null as ILocationRepository).Create(mocks);
var allLocations = new List<Location>();
allLocations.Add((null as Location).Create(1.01f, 6.5));
TestContext.WriteLine(allLocations.Print());
Rhino.Mocks
.Expect.Call(db.GetLocations())
.Repeat.Any()
.Return(allLocations);
mocks.ReplayAll();
var target = new Engine(db);
var actual = target.Scout();
Assert.AreEqual(1, actual.Count());
mocks.VerifyAll();
}