示例#1
0
 public void MyTestCleanup()
 {
     mockBingoCard      = null;
     mockBingoEvaluator = null;
     bingoGame          = null;
     target             = null;
 }
示例#2
0
 public void MyTestInitialize()
 {
     mockBingoEvaluator = new Mock <IBingoEvaluator>();
     mockBingoCard      = new Mock <IBingoCard>();
     mockBingoService   = new Mock <IBingoService>();
     bingoGame          = new BingoGamePresenter(mockBingoService.Object);
     target             = new MainPresenter();
 }