Пример #1
0
        public void Get_WhenCalled_GetBreedByGroupId()
        {
            var invailedID = new Guid("ab1bd817-98cd-4cf3-a80a-53ea0cd91234");

            // Act
            var okResult = _controller.GetBreedByGroupId(invailedID);

            // Assert
            Assert.IsInstanceOf <NotFoundResult>(okResult);
        }