1 namespace Demo.UnitTest.Lesson03_Fixture 2 { SharedContext_Constructor : IDisposable 4 { 5 private ITestOutputHelper _output; 6 public SharedContext_Constructor(ITestOutputHelper output) 7 { 8 this._output = output; ); 10 } Test case )] TestCase01() 15 { ); 17 } )] TestCase02() 21 { ); 23 } )] TestCase03() 27 { ); 29 } Dispose() 33 { ); 35 } 36 } 37 }