Exemplo n.º 1
0
        public void ProfilageToStringTest()
        {
            Profilage target   = new Profilage();
            string    expected = "Profilage";
            string    actual;

            actual = target.ToString();
            Assert.AreEqual(expected, actual, "ProfilageToStringTest");
        }
Exemplo n.º 2
0
        public void ProfilageConstructorTest()
        {
            Profilage target = new Profilage();

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