Ejemplo n.º 1
0
        public void GetAll_RepositoryShouldCallOnce()
        {
            //act
            teacherService.GetAll();

            //assert
            uow.Verify(x => x.Teachers, Times.Once);
        }