예제 #1
0
        public void LinqToStringTest()
        {
            Linq   target   = new Linq();
            string expected = "Linq";
            string actual;

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

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