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
OutputOn.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
OutputOn
extends
TDKLambdaPowerSupplyTestCase
{
13
@Test
14
public
void
testOutputOn()
throws
IOException {
15
this.powerSupply.
outputOn
();
16
assertCorrectMessage(
17
String.format(
PowerSupply
.
SET_OUTPUT_COMMAND
,
PowerSupply
.
ON
)
18
);
19
}
20
}
devices.PowerSupply
Definition:
PowerSupply.java:8
devices.PowerSupply.ON
String ON
Definition:
PowerSupply.java:70
devices.PowerSupply.outputOn
void outputOn()
devices.PowerSupply.SET_OUTPUT_COMMAND
String SET_OUTPUT_COMMAND
Definition:
PowerSupply.java:49
unit.devices.tdk_lambda_power_supply.TDKLambdaPowerSupplyTestCase
Definition:
TDKLambdaPowerSupplyTestCase.java:16
unit.devices.tdk_lambda_power_supply.OutputOn
Definition:
OutputOn.java:12
devices.TDKLambdaPowerSupply
Definition:
TDKLambdaPowerSupply.java:15
devices
Definition:
AbstractRS232Device.java:1
Git Repo