Esempio n. 1
0
        public void LinqToStringTest()
        {
            Linq   target   = new Linq();
            string expected = "Linq";
            string actual;

            actual = target.ToString();
            Assert.AreEqual(expected, actual, "LinqToStringTest");
        }
Esempio n. 2
0
        public void LinqConstructorTest()
        {
            Linq target = new Linq();

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