implemeted runAllTests command in Menu

This commit is contained in:
Kjistóf 2016-04-26 01:41:46 +02:00
parent eb752eddbb
commit 491924bdb4

View File

@ -1,11 +1,14 @@
package cicaprojekt;
import java.io.BufferedReader;
import java.io.Console;
import java.io.IOException;
import java.io.InputStreamReader;
import java.lang.reflect.InvocationTargetException;
public class Menu {
public static void main(String[] args) throws IOException {
public static void main(String[] args) throws IOException, InvocationTargetException, IllegalAccessException
{
System.out.println("Continuously Integrated Cica Projekt - Proto");
System.out.println("Üdvözöllek a Babylon Simulator 2000 játékban! Kérlek válassz egy menüpontot!");
@ -41,6 +44,13 @@ public class Menu {
case "listStargates":
System.out.println(tester.listStargates());
break;
case "runAllTests":
boolean testresult = tester.runAllTests();
if (testresult)
System.out.println("All tests successful!");
else
System.out.println("Tests failed!");
break;
case "exit":
isExiting = true;
break;