Exemplo n.º 1
0
        public void Last_person_whose_firstname_does_not_start_with_J_or_null()
        {
            TestData.Person result = TestData.People.First();

            Assert.AreEqual(null, result);
        }
Exemplo n.º 2
0
        public void Last_person_with_lastname_ending_with_l()
        {
            TestData.Person result = TestData.People.First();

            Assert.AreEqual(TestData.People[2], result);
        }
Exemplo n.º 3
0
        public void First_person_born_141th_day_of_year()
        {
            TestData.Person result = TestData.People.First();

            Assert.AreEqual(TestData.People[2], result);
        }
Exemplo n.º 4
0
        public void First_person_born_after_2000()
        {
            TestData.Person result = TestData.People.First();

            Assert.AreEqual(TestData.People[2], result);
        }