예제 #1
0
 public void GetAllcountPresentstudentsTest()
 {
     // var count = 15;
     _sps.Setup(a => a.GetAllcountPresentstudents()).Returns(It.IsAny <int>);
     _teacher.GetAllcountPresentstudents();
     _sps.Verify(a => a.GetAllcountPresentstudents(), Times.Once);
 }