public void CreateInstsnce_InstanceCreated()
        {
            //Arange
            //Act
            var sut = new SutLibrary();

            //Assert
            Assert.NotNull(sut);
        }
 public void TearDown()
 {
     this.globalSutLibrary = null;
 }
 public void Dispose()
 {
     this.globalSutLibrary = null;
 }
 public void SetUp()
 {
     this.globalSutLibrary = new SutLibrary();
 }
 public SutTests()
 {
     this.globalSutLibrary = new SutLibrary();
 }