예제 #1
0
        public void ClipController_ShoulCallMethodGetAllClips()
        {
            var result = _clipController.GetAllClips();

            _mockService.Verify(m => m.GetAllClips(), Times.Once);
            Assert.IsNotNull(result);
            Assert.IsInstanceOfType(result, typeof(IEnumerable <Clip>));
        }