Ejemplo n.º 1
0
 public virtual void TearDown()
 {
     try
     {
         _game.Dispose();
         _game = null;
     }
     catch
     {
     }
 }
Ejemplo n.º 2
0
		public virtual void TearDown ()
		{
			_game.Dispose ();
			_game = null;
		}
Ejemplo n.º 3
0
		public virtual void SetUp ()
		{
			Paths.SetStandardWorkingDirectory();
			_game = new VisualTestGame ();
			_game.ExitCondition = x => x.DrawNumber > 1;
		}
 public virtual void TearDown()
 {
     _game.Dispose();
     _game = null;
 }
 public virtual void SetUp()
 {
     Paths.SetStandardWorkingDirectory();
     _game = new VisualTestGame();
     _game.ExitCondition = x => x.DrawNumber > 1;
 }
Ejemplo n.º 6
0
 public void SetUp()
 {
     Paths.SetStandardWorkingDirectory();
     _game = new VisualTestGame ();
 }