Ejemplo n.º 1
0
 public void GetGamePathAssertDoesNotThrowTest()
 {
     try
     {
         var gameSettings = GamePath.GetGamePath("test-settings");
     }
     catch (Exception ex)
     {
         throw new Exception("expected action not to throw, but it did!", ex);
     }
 }
Ejemplo n.º 2
0
        private static void Main(string[] args)
        {
            var gameSettings = GamePath.GetGamePath(args[0]);

            ExecuteGame(gameSettings);
        }