%REM Copyright 2022-2023 HCL America, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License %END REM %REM Agent TestSuite_Arrays Created Mar 31, 2022 by Paul Withers Description: Comments for Agent %END REM Option Public Option Declare Use "VoltScriptTesting" Sub Initialize Dim testRunner As TestRunner Dim results As Integer Set testRunner = New TestRunner(|ENTER NAME|) ' BEGIN CODE HERE Call test(testRunner) End Sub %REM Function **UPDATE NAME** Description: unit tests for **ADD DESCRIPTION** %END REM Function test(testRunner As TestRunner) As Boolean Dim testSuite As New TestSuite(|**UPDATE NAME**|) Call testRunner.addTestSuite(testSuite) If testSuite.ranSuccessfully() then test = True End Function