DataValue#
One data value acquired during project execution The data values are organized in the DataTable each Test has.
property has_passed#
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 has_result#
Gets a value determining whether this data value was evaluated
Returns#
| Type | Description |
|---|---|
| bool | True , if the data value was evaluated otherwise False . |
property is_bool#
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 is_float#
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 is_float_array#
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 is_string#
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 get_bool()#
Returns the value in case this data value is of type boolean.
Returns#
| Type | Description |
|---|---|
| bool | The data value as boolean. |
method get_float()#
Returns the value in case this data value is of type float.
Returns#
| Type | Description |
|---|---|
| float | The data value as float. |
method get_float_array()#
Returns the value in case this data value is of type array of float.
Returns#
| Type | Description |
|---|---|
| float | The data value as array of float. |
method get_string()#
Returns the value in case this data value is of type string.
Returns#
| Type | Description |
|---|---|
| str | The data value as string. |