Exemple #1
0
        public void CanGetOwnerPetById()
        {
            var ownerPet = _ownerPetController.Get(2);

            Assert.IsNotNull(ownerPet);
            Assert.IsInstanceOfType(ownerPet, typeof(OwnerPet));
            Assert.AreEqual(2, ownerPet.ID);
        }