public void ExeptionsToStringTest() { Exeptions target = new Exeptions(); string expected = "Master.Classes.ExeptionsTest.Exeptions"; string actual; actual = target.ToString(); Assert.AreEqual(expected, actual, "ExeptionsToStringTest"); }
public void ExeptionsConstructorTest() { Exeptions target = new Exeptions(); Assert.IsNotNull(target, "ExeptionsConstructorTest"); }