/ MATES / Modular Automatic Test Equipment System API
2.5.0.0
|
Asserts suitable for a DIO node. More...
Public Member Functions | |
void | InputSet (int channel) |
Asserts that the specified input channel is in high state. More... | |
void | InputEquals (int channel, bool state) |
Asserts that the specified input channel is in the given state. More... | |
void | OutputSet (int channel) |
Asserts that the specified output channel is in high state. More... | |
void | RegisterEquals (RegisterNumber register, int value) |
Asserts that the specified integral register has the specified value. More... | |
void | RegisterEquals (RegisterNumber register, float value) |
Asserts that the specified floating point register has the specified value. More... | |
Asserts suitable for a DIO node.
void InputSet | ( | int | channel | ) |
Asserts that the specified input channel is in high state.
channel | The input channel number [0, 19]. |
Implemented in DioNode.
void InputEquals | ( | int | channel, |
bool | state | ||
) |
Asserts that the specified input channel is in the given state.
channel | The input channel number [0, 19]. |
state | The expected state. |
Implemented in DioNode.
void OutputSet | ( | int | channel | ) |
Asserts that the specified output channel is in high state.
channel | The output channel number [0, 19]. |
Implemented in DioNode.
|
inherited |
Asserts that the specified integral register has the specified value.
register | The register number. |
value | The expected value. |
Implemented in Node.
|
inherited |
Asserts that the specified floating point register has the specified value.
register | The register number. |
value | The expected value. |
Implemented in Node.