BakeoutController-Basic  0.1
A Controller for the Omicron vacuum chamber
UserInterfaceConfigurationTestCase.java
1 package unit.ui.user_interface_configuration;
2 
3 import javafx.stage.Stage;
4 import org.junit.Before;
5 import org.springframework.context.ApplicationContext;
6 import org.springframework.context.annotation.AnnotationConfigApplicationContext;
9 
13 public abstract class UserInterfaceConfigurationTestCase extends
15  protected ApplicationContext applicationContext;
16 
17  @Before
18  public void setUserInterfaceConfiguration(){
19  this.applicationContext = new AnnotationConfigApplicationContext(
21  );
22  }
23 
24  @Override public void start(Stage stage){
25  // Don't start the application
26  }
27 }
Git Repo