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); } }
private static void Main(string[] args) { var gameSettings = GamePath.GetGamePath(args[0]); ExecuteGame(gameSettings); }