BakeoutController-Basic
0.1
A Controller for the Omicron vacuum chamber
Main Page
Related Pages
Packages
Classes
Files
File List
src
test
java
unit
devices
tdk_lambda_power_supply
OutputOff.java
1
package
unit.devices.tdk_lambda_power_supply;
2
3
import
devices
.
PowerSupply
;
4
import
devices
.
TDKLambdaPowerSupply
;
5
import
org.junit.Test;
6
7
import
java.io.IOException;
8
12
public
final
class
OutputOff
extends
TDKLambdaPowerSupplyTestCase
{
13
@Test
14
public
void
testOutputOff()
throws
IOException {
15
this.powerSupply.
outputOff
();
16
assertCorrectMessage(
17
String.format(
PowerSupply
.
SET_OUTPUT_COMMAND
,
PowerSupply
.
OFF
)
18
);
19
}
20
}
devices.PowerSupply
Definition:
PowerSupply.java:8
devices.PowerSupply.OFF
String OFF
Definition:
PowerSupply.java:65
devices.PowerSupply.SET_OUTPUT_COMMAND
String SET_OUTPUT_COMMAND
Definition:
PowerSupply.java:49
unit.devices.tdk_lambda_power_supply.TDKLambdaPowerSupplyTestCase
Definition:
TDKLambdaPowerSupplyTestCase.java:16
devices.TDKLambdaPowerSupply
Definition:
TDKLambdaPowerSupply.java:15
devices
Definition:
AbstractRS232Device.java:1
devices.PowerSupply.outputOff
void outputOff()
unit.devices.tdk_lambda_power_supply.OutputOff
Definition:
OutputOff.java:12
Git Repo