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