protected override void Setup()
 {
     base.Setup();
     _testSourceEntity = new TestSourceEntity();
     _testTargetEntity = new TestTargetEntity();
     _testSourceEntity.GetTreeMappingProvider("Source");
 }
Beispiel #2
0
 protected override void Setup()
 {
     base.Setup();
     _testTargetEntity = Substitute.For <TestTargetEntity>();
     _testSourceEntity = new TestSourceEntity();
     _testSourceEntity.GetTreeMappingProvider("Source");
     _eventBindingEnumerator = new EventBindingEnumerator(_testSourceEntity.TestControlWithEvent, _testTargetEntity);
 }