Skip to content

Script Types

type is used to explicitly specify the nature and category of test task execution.

Supported Types

Type IdentifierDescription
TEST_FUNCTIONALITYFunctional Testing: Verifies whether system functionalities meet expectations
TEST_PERFORMANCEPerformance Testing: Evaluates system performance under various load conditions
TEST_STABILITYStability Testing: Checks system reliability during continuous operation
TEST_CUSTOMIZATIONCustom Testing: Executes tailored test tasks for specific requirements
MOCK_DATAMock Data Generation: Creates fictional data for development and testing
MOCK_APISMock API Generation: Builds simulated APIs for component integration testing

Configuration Example

yaml
# Required field, specifies the task type for script execution  
type: TEST_FUNCTIONALITY

Usage Guidelines

  1. Mandatory Property: Each script must explicitly define the type field.
  2. Single Type: Each script supports only one task type.
  3. Case-Sensitive: Type identifiers must strictly follow the specified format.
  4. Extension Restrictions: Custom types are not supported; choose from predefined types only.

💡 Correctly setting the type ensures the test engine executes the appropriate validation logic. Select based on actual task requirements.

Released under the GPL-3.0 License.