BakeoutController-Basic  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;
8 
9 
13 public abstract class UserInterfaceLauncherTestCase extends
15 
20  protected Stage stage;
21 
22  protected final ApplicationContext applicationContext =
23  new AnnotationConfigApplicationContext(
25  );
26 
31  @Override
32  public void start(Stage stage){
33  this.stage = stage;
34  }
35 }
Git Repo