TestResult Property
General info
Label |
Result |
Description |
The value or list of values returned from the performance of the material test. For example: Pass, Fail, 95, Red, Green |
Data type |
String |
Type |
Regular |
Code |
828 |
Symbolic name |
MODEL_PROP_TESTRESULT |
Lua access code |
inmation.model.properties.TestResult |
Available since |
1.8.1.1450 |
- Parent classes
Attributes
Name | Tooltip |
---|---|
PROP_CONFIGURABLE | The property is configurable and can be changed with DataStudio and the various inmation APIs |
PROP_VISIBLE | The property is visible in DataStudio and can be read by the inmation APIs |
Examples
Read from or write to the TestResult
property.
-- Read from the TestResult
inmation.getvalue("<OBJECT FULL PATH>.TestResult")
-- Write to the TestResult
inmation.setvalue("<OBJECT FULL PATH>.TestResult", "new value")
TcpConfig tcpcfg = new TcpConfig() {{ HostNameOrIp = "localhost", Port = 6512 }};
SecurityCredentials sc = new SecurityCredentials() {{ ProfileName = "so", Password = "inmation" }};
StatelessInterface sli = new StatelessInterface(tcpcfg);
// Read from the TestResult
test 2
// Write to the TestResult
test 1