BakeoutController-Basic  0.1
A Controller for the Omicron vacuum chamber
IsProvidingVariables.java
1 package unit.kernel.models.variables.pressure_provider;
2 
3 
5 import org.jetbrains.annotations.Contract;
6 import org.junit.Test;
7 
8 import static org.junit.Assert.assertNotNull;
9 
13 public final class IsProvidingVariables extends PressureProviderTestCase {
14  @Contract(" -> !null")
15  @Override
16  protected ExpectationsForPressureProvider getExpectations() throws
17  Exception {
19  }
20 
21  @Test
22  public void isProvidingVariables(){
23  assertNotNull(provider.isProvidingVariables());
24  }
25 }
Git Repo