FactoryTest hinzugefügt um Factory zu testen.
parent
18d4f8152c
commit
38ca80a937
|
@ -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() {
|
||||
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue