BakeoutController-Basic  0.1
A Controller for the Omicron vacuum chamber
Reset.java
1 package unit.devices.tdk_lambda_power_supply;
2 
3 import devices.PowerSupply;
5 import org.junit.Test;
6 
7 import java.io.IOException;
8 
12 public final class Reset extends TDKLambdaPowerSupplyTestCase {
13  @Test
14  public void testReset() throws IOException {
15  this.powerSupply.reset();
16  assertCorrectMessage(PowerSupply.RESET_COMMAND);
17  }
18 }
Git Repo