public Collection_Fixture_B(ACounter counter)
 {
     this.testCounter = counter;
 }
Esempio n. 2
0
 // This is the setup, run before every test.
 // ACounter is a class with a static member that
 // counts how many time is it constructed.
 public Construct_Dispose(ITestOutputHelper output)
 {
     this.output      = output;
     this.testCounter = new ACounter();
 }