public void TearDown()
 {
     //Destroy your objects in reverse order of initialization.
     _model = null;
 }
Ejemplo n.º 2
0
 public void Teardown()
 {
     _model = null;
 }
 public void Setup()
 {
     // initialize the class we wish to test. This is the only allow 'new' in the test, unless its a Mock or a Struct.
     _model = new AnotherExampleDatamodel();
 }
Ejemplo n.º 4
0
 public void SetUp()
 {
     _model = new AnotherExampleDatamodel();
 }