Functions: H¶
2 functions (5 overloads) on BasicRuntime.Functions starting with H.
HEADING¶
Overload 1
Performs the heading operation using the supplied heading, channelNo, ejectPage.
| Kind | Method (static) |
| Returns | void |
| Use case | Call Functions.HEADING(...) directly (no instance required) when your code needs to perform the heading operation using the supplied heading, channelNo, ejectPage. |
How this member is tested
Act: Functions.HEADING("sample", 1, true)
Assert: no exception is thrown and the expected side effect occurred.
Expected: No return value; verify the intended side effect occurred (state change, event raised, or exception NOT thrown for valid input).
Overload 2
Performs the heading operation using the supplied heading, channelNo.
| Kind | Method (static) |
| Returns | void |
| Use case | Call Functions.HEADING(...) directly (no instance required) when your code needs to perform the heading operation using the supplied heading, channelNo. |
How this member is tested
Act: Functions.HEADING("sample", 1)
Assert: no exception is thrown and the expected side effect occurred.
Expected: No return value; verify the intended side effect occurred (state change, event raised, or exception NOT thrown for valid input).
HUSH¶
Overload 1
Performs the hush operation using the supplied mode.
| Kind | Method (static) |
| Returns | void |
| Use case | Call Functions.HUSH(...) directly (no instance required) when your code needs to perform the hush operation using the supplied mode. |
How this member is tested
Act: Functions.HUSH(/* a valid DynamicArray value */)
Assert: no exception is thrown and the expected side effect occurred.
Expected: No return value; verify the intended side effect occurred (state change, event raised, or exception NOT thrown for valid input).
Overload 2
Performs the hush operation using the supplied mode, oldValue.
| Kind | Method (static) |
| Returns | void |
| Use case | Call Functions.HUSH(...) directly (no instance required) when your code needs to perform the hush operation using the supplied mode, oldValue. |
How this member is tested
Act: Functions.HUSH(true, /* a valid DynamicArray value */)
Assert: no exception is thrown and the expected side effect occurred.
Expected: No return value; verify the intended side effect occurred (state change, event raised, or exception NOT thrown for valid input).
Overload 3
Performs the hush operation using the supplied mode.
| Kind | Method (static) |
| Returns | void |
| Use case | Call Functions.HUSH(...) directly (no instance required) when your code needs to perform the hush operation using the supplied mode. |
How this member is tested
Act: Functions.HUSH(true)
Assert: no exception is thrown and the expected side effect occurred.
Expected: No return value; verify the intended side effect occurred (state change, event raised, or exception NOT thrown for valid input).