コード例 #1
0
 public void Setup()
 {
     _notifier = Substitute.For<IEventNotifier>();
     _notifier.When(noti => noti.SendText(Arg.Any<string>())).Do(call => _botText = (string) call[0]);
 }