BakeoutController  0.1
A Controller for the Omicron vacuum chamber
UserInterfaceLauncherTestCase.java
1 package unit.ui.user_interface_launcher;
2 
3 import javafx.stage.Stage;
4 import org.springframework.context.ApplicationContext;
5 import org.springframework.context.annotation.AnnotationConfigApplicationContext;
7 
8 
12 public abstract class UserInterfaceLauncherTestCase extends
14 
19  protected Stage stage;
20 
21  protected final ApplicationContext applicationContext =
22  new AnnotationConfigApplicationContext(
24  );
25 
30  @Override
31  public void start(Stage stage){
32  this.stage = stage;
33  }
34 }
Git Repo