private void VerifyBuiltOnly(params Geography[] shapes)
 {
     SpatialTestUtils.AssertEqualContents(this.constructedInstances, shapes);
     foreach (var instance in constructedInstances)
     {
         Assert.AreSame(this.creator, instance.Creator);
     }
 }
Exemple #2
0
 private void AssertBothNodesSeeTheseCalls(params Call[] expectedCalls)
 {
     SpatialTestUtils.AssertEqualContents(expectedCalls, this.currentNode.Calls);
     SpatialTestUtils.AssertEqualContents(expectedCalls, this.downstreamSegment.Calls);
 }