Ejemplo n.º 1
0
        public void ExeptionsToStringTest()
        {
            Exeptions target   = new Exeptions();
            string    expected = "Master.Classes.ExeptionsTest.Exeptions";
            string    actual;

            actual = target.ToString();
            Assert.AreEqual(expected, actual, "ExeptionsToStringTest");
        }
Ejemplo n.º 2
0
        public void ExeptionsConstructorTest()
        {
            Exeptions target = new Exeptions();

            Assert.IsNotNull(target, "ExeptionsConstructorTest");
        }