Exemplo n.º 1
0
        public void TestMethod1()
        {
            int num = new DaoLayer.StudentDAO().getStudentRecordsNums();

            Assert.Equals(num, 84);
        }
Exemplo n.º 2
0
 public void TestMethod1()
 {
     DaoLayer.StudentDAO dao = new DaoLayer.StudentDAO();
     Assert.AreEqual(dao.getStudentRecordsNums(), 84);
 }
Exemplo n.º 3
0
        public void Test1()
        {
            int num = new DaoLayer.StudentDAO().getStudentRecordsNums();

            Assert.Equal(84, num);
        }