Assert_ArrayOfWord_ContainsNot (FUN) ¶ FUNCTION Assert_ArrayOfWord_ContainsNot : BOOL Assertion function to check that an ARRAY OF WORD does not contain a specific value InOut: Scope Name Type Initial Comment Return Assert_ArrayOfWord_ContainsNot BOOL TRUE if the assertion passes succesfully, FALSE otherwise Input context IBaseIecUnitTest The instance of the test function block calling this function. This instance can be provided by using THIS^ . referenceValue WORD The value that should not be contained actualArray POINTER TO WORD The array to check wsErrorMsg WSTRING(Constants.WSTRING_LENGTH) “” A custom error message, that is added to the error message of the assertion itself. If this parameter is used, it is recommended to adapt the value of the library parameter Constants.WSTRING_LENGTH .
Assert_ArrayOfWString_ContainsOneOf (FUN) ¶ FUNCTION Assert_ArrayOfWString_ContainsOneOf : BOOL Assertion function to check that an ARRAY OF WSTRING contains at least one of the specified values. InOut: Scope Name Type Initial Comment Return Assert_ArrayOfWString_ContainsOneOf BOOL TRUE if the assertion passes succesfully, FALSE otherwise Input context IBaseIecUnitTest The instance of the test function block calling this function. This instance can be provided by using THIS^ . referenceValues POINTER TO WSTRING An array with values that should be contained. actualArray POINTER TO WSTRING The array to check wsErrorMsg WSTRING(Constants.WSTRING_LENGTH) “” A custom error message, that is added to the error message of the assertion itself. If this parameter is used, it is recommended to adapt the value of the library parameter Constants.WSTRING_LENGTH .
Assert_ArrayOfWString_ContainsSequence (FUN) ¶ FUNCTION Assert_ArrayOfWString_ContainsSequence : BOOL Assertion function to check that an ARRAY OF WSTRING contains a specific sequence of values InOut: Scope Name Type Initial Comment Return Assert_ArrayOfWString_ContainsSequence BOOL TRUE if the assertion passes succesfully, FALSE otherwise Input context IBaseIecUnitTest The instance of the test function block calling this function. This instance can be provided by using THIS^ . referenceArray POINTER TO WSTRING The array with the sequence that should be contained actualArray POINTER TO WSTRING The array to check wsErrorMsg WSTRING(Constants.WSTRING_LENGTH) “” A custom error message, that is added to the error message of the assertion itself. If this parameter is used, it is recommended to adapt the value of the library parameter Constants.WSTRING_LENGTH .
Assert_ArrayOfWString_Equal (FUN) ¶ FUNCTION Assert_ArrayOfWString_Equal : BOOL Assertion function to check that two ARRAY OF WSTRING are equal. Two arrays are equal if all of the following conditions are met: * the two array have the same bounds * for each index the values of both arrays are equal InOut: Scope Name Type Initial Comment Return Assert_ArrayOfWString_Equal BOOL TRUE if the assertion passes succesfully, FALSE otherwise Input context IBaseIecUnitTest The instance of the test function block calling this function. This instance can be provided by using THIS^ . referenceArray POINTER TO WSTRING The reference array to check actualArray POINTER TO WSTRING The array to check wsErrorMsg WSTRING(Constants.WSTRING_LENGTH) “” A custom error message, that is added to the error message of the assertion itself. If this parameter is used, it is recommended to adapt the value of the library parameter Constants.WSTRING_LENGTH .
Assert_ArrayOfWString_NotEqual (FUN) ¶ FUNCTION Assert_ArrayOfWString_NotEqual : BOOL Assertion function to check that two ARRAY OF WSTRING are not equal. Two arrays are not equal if at least one of the following conditions is not met: * the two arrays have the same bounds * for each index the values of both arrays are equal InOut: Scope Name Type Initial Comment Return Assert_ArrayOfWString_NotEqual BOOL TRUE if the assertion passes succesfully, FALSE otherwise Input context IBaseIecUnitTest The instance of the test function block calling this function. This instance can be provided by using THIS^ . referenceArray POINTER TO WSTRING The reference array to check actualArray POINTER TO WSTRING The array to check wsErrorMsg WSTRING(Constants.WSTRING_LENGTH) “” A custom error message, that is added to the error message of the assertion itself. If this parameter is used, it is recommended to adapt the value of the library parameter Constants.WSTRING_LENGTH .
UML Statechart Types Library Documentation ¶ Company : 3S - Smart Software Solutions GmbH Title : UML Statechart Types Version : 4.3.0.0 Categories : Intern|UML Namespace : UML_SC Author : 3S - Smart Software Solutions GmbH Placeholder : UML_SC Description [ 1 ] ¶ Structure for UML state charts Contents: ¶ StateChart_R_TRIG (FunctionBlock) _UML_SC_IntraStatePosition (Enum) _UML_SC_State (Struct) _UML_SC_StateTypes (Enum) _UML_SC_Statechart (Struct) _UML_SC_Transition (Struct) Indices and tables ¶ [ 1 ] Based on UML Statechart Types.library, last modified 28.09.2023, 15:49:48. LibDoc 4.4.0.0-b.37 The content file UML Statechart Types.clean.json was generated with CODESYS V3.5 SP16 Patch 3 on 28.09.2023, 15:49:51.
StateChart_R_TRIG (FB) ¶ FUNCTION_BLOCK StateChart_R_TRIG Rising edge detection InOut: Scope Name Type Comment Input CLK BOOL Signal to detect BYPASS BOOL Output Q BOOL rising edge at signal detected
_UML_SC_IntraStatePosition (ENUM) ¶ TYPE _UML_SC_IntraStatePosition : InOut: Name beforeEntry AfterEntry AfterDo
_UML_SC_State (STRUCT) ¶ TYPE _UML_SC_State : STRUCT InOut: Name Type Comment Active BOOL Check if this state is currently active FastExecutionFault BOOL Check if the maximum do-cycles have been exceeded (in-cycle state only) ID INT The identifier for the related state ActivationTime TIME The time stamp of the last activation Name STRING Added in 4.0.2.1 to show the name of the state.
_UML_SC_StateTypes (ENUM) ¶ TYPE _UML_SC_StateTypes : InOut: Name UnDefined InitialState FastState SlowState OrthogonalState CompositeState FinalState