Beispiel #1
0
 void GivenTwoOperationsOfTheSameTypeWithoutProperties()
 {
     SUT    = new OperationWithoutProperties1();
     Object = new OperationWithoutProperties1();
 }
Beispiel #2
0
 void GivenAOperationAndANullReference()
 {
     SUT    = new OperationWithoutProperties1();
     Object = null;
 }
Beispiel #3
0
 void GivenTwoReferencesToTheSameOperation()
 {
     SUT    = new OperationWithoutProperties1();
     Object = SUT;
 }
Beispiel #4
0
 void GivenTwoOperationsOfDifferentTypeWithoutProperties()
 {
     SUT    = new OperationWithoutProperties1();
     Object = new OperationWithoutProperties2();
 }