FactoryTest hinzugefügt um Factory zu testen.

master
nikow 2023-01-07 15:31:24 +01:00
parent 18d4f8152c
commit 38ca80a937
1 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,32 @@
package ui;
import static org.junit.jupiter.api.Assertions.*;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;
import facade.Factorysystem;
import tpe.exceptions.roboter.exceptions.RobotException;
class FactoryTest {
private static Factorysystem fs;
private static Factory factory;
@BeforeAll
static void initFactory() throws RobotException {
//Factorysystem fs = new Factorysystem ("Robot Fabrik");
//Factory factory = new Factory(fs);
}
/*@Test
void smoketest() {
assertNull(fs);
assertNotNull(factory);
}*/
@Test
static void alleRoboterAnzeigenTest() {
}
}