コード例 #1
0
        public void TestCountOfDogsForTheOwnerOfDogWithId()
        {
            var       result   = _dogRepository.GetCountOfDogsForTheOwnerOfDogWithId(6);
            const int expected = 3;

            Assert.AreEqual(expected, result);
        }