Beispiel #1
0
        public void GetBikeColorByDescription_Calls_GetColorById_In_Service()
        {
            var testDescription = "Test";

            colorController.GetBikeColorByDescription(testDescription);
            mockService.Verify(s => s.GetColorByDescription(It.IsAny <string>()), Times.Once);
        }