DataValue#
One data value acquired during project execution
The data values are organized in the Test has.
property HasPassed
#
Gets a value determining whether this data value has passed the evaluation
Returns#
Type | Description |
---|---|
bool | True , if the data value passed the evaluation otherwise False . |
property HasResult
#
Gets a value determining whether this data value was evaluated
Returns#
Type | Description |
---|---|
bool | True , if the data value was evaluated otherwise False . |
property IsBool
#
Gets a value determining whether this data value is of type bool.
Returns#
Type | Description |
---|---|
bool | True , if the data value is of type bool otherwise False . |
property IsFloat
#
Gets a value determining whether this data value is of type float.
Returns#
Type | Description |
---|---|
bool | True , if the data value is of type float otherwise False . |
property IsFloatArray
#
Gets a value determining whether this data value is of type array of float.
Returns#
Type | Description |
---|---|
bool | True , if the data value is of type array of float otherwise False . |
property IsString
#
Gets a value determining whether this data value is of type string.
Returns#
Type | Description |
---|---|
bool | True , if the data value is of type string otherwise False . |
method GetBool()
#
Returns the value in case this data value is of type boolean.
Returns#
Type | Description |
---|---|
bool | The data value as boolean. |
method GetFloat()
#
Returns the value in case this data value is of type float.
Returns#
Type | Description |
---|---|
float | The data value as float. |
method GetFloatArray()
#
Returns the value in case this data value is of type array of float.
Returns#
Type | Description |
---|---|
list of float | The data value as array of float. |
method GetString()
#
Returns the value in case this data value is of type string.
Returns#
Type | Description |
---|---|
string | The data value as string. |