Example #1
0
 public void TestSetup()
 {
     this._gameController = GameController.Instance;
     this._mockedGameInitializationNotifier =new Mock<INotifier>();
     this._gameController.Notifier = _mockedGameInitializationNotifier.Object;
 }
Example #2
0
 public void TestSetup()
 {
     this._gameController = GameController.Instance;
     this._mockedPlayer = new Mock<IPlayer>();
     this._mockedTable = new Mock<IPlayingTable>();
 }