Package org.testfx.toolkit
Interface ApplicationService
- All Known Implementing Classes:
ApplicationServiceImpl
public interface ApplicationService
Helper interface whose methods' returned
Future objects' Future.get() method either indicates
when an Application's init, start, or stop methods are finished or returns the created application.-
Method Summary
-
Method Details
-
init
- Returns:
- a
FuturewhoseFuture.get()will return when the given application has finished itsApplication.init()method
-
start
- Returns:
- a
FuturewhoseFuture.get()will return when the given application has finished itsApplication.start(Stage)method
-
stop
- Returns:
- a
FuturewhoseFuture.get()will return when the given application has finished itsApplication.stop()method
-