Exemple #1
0
        public void TestGetAll()
        {
            var repo = new DisciplineRepository();

            var d = repo.GetAll();

            Assert.IsTrue(d.Count > 0);
            var x = repo.GetFromTop(1);

            Assert.IsTrue(x.Count > 0);
        }
Exemple #2
0
        public void TestGetAll()
        {
            var repo = new DisciplineRepository();

            var d = repo.GetAll();
            Assert.IsTrue(d.Count > 0);
            var x = repo.GetFromTop(1);
            Assert.IsTrue(x.Count > 0);
        }