diff --git a/Roboterfabrik/src/ui/FactoryTest.java b/Roboterfabrik/src/ui/FactoryTest.java new file mode 100644 index 0000000..9077316 --- /dev/null +++ b/Roboterfabrik/src/ui/FactoryTest.java @@ -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() { + + } + +}