Пример #1
0
        public void TestCase1(string name, string expectValue)
        {
            List <Student> _emptyStudents = new List <Student> {
            };
            var result = _studentFind.Find(name, _students);

            Assert.Equal(result, expectValue);
        }
Пример #2
0
        public void NameShouldBeFound(string name, string expectValue)
        {
            var result = _studentFind.Find(name);

            Assert.Equal(result, expectValue);
        }
Пример #3
0
        public void TestCase1(string name, string expectValue)
        {
            var result = _studentFind.Find(name, _students);

            Assert.Equal(result, expectValue);
        }