public SuperHeavyWeightTests(ITestOutputHelper output)
        {
            this.output = output;
            output.WriteLine("run constructor method 1");

            _sut = new SuperHeavyWeight();
        }
 public SuperHeavyWeightFixture()
 {
     Sut = new SuperHeavyWeight();
 }