Package org.testfx.framework.junit5
Class ApplicationExtension.AnnotationBasedApplicationFixture
- java.lang.Object
-
- org.testfx.framework.junit5.ApplicationExtension.AnnotationBasedApplicationFixture
-
- All Implemented Interfaces:
ApplicationFixture
- Enclosing class:
- ApplicationExtension
private static class ApplicationExtension.AnnotationBasedApplicationFixture extends java.lang.Object implements ApplicationFixture
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.List<java.lang.reflect.Method>
init
private java.util.List<java.lang.reflect.Method>
start
private java.util.List<java.lang.reflect.Method>
stop
private java.lang.Object
testInstance
-
Constructor Summary
Constructors Modifier Constructor Description private
AnnotationBasedApplicationFixture(java.lang.Object testInstance, java.util.List<java.lang.reflect.Method> init, java.util.List<java.lang.reflect.Method> start, java.util.List<java.lang.reflect.Method> stop)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
init()
void
start(javafx.stage.Stage stage)
void
stop()
-
-
-
Method Detail
-
init
public void init() throws java.lang.reflect.InvocationTargetException, java.lang.IllegalAccessException
- Specified by:
init
in interfaceApplicationFixture
- Throws:
java.lang.reflect.InvocationTargetException
java.lang.IllegalAccessException
-
start
public void start(javafx.stage.Stage stage) throws java.lang.reflect.InvocationTargetException, java.lang.IllegalAccessException
- Specified by:
start
in interfaceApplicationFixture
- Throws:
java.lang.reflect.InvocationTargetException
java.lang.IllegalAccessException
-
stop
public void stop() throws java.lang.reflect.InvocationTargetException, java.lang.IllegalAccessException
- Specified by:
stop
in interfaceApplicationFixture
- Throws:
java.lang.reflect.InvocationTargetException
java.lang.IllegalAccessException
-
-