Script Types
type
is used to explicitly specify the nature and category of test task execution.
Supported Types
Type Identifier | Description |
---|---|
TEST_FUNCTIONALITY | Functional Testing: Verifies whether system functionalities meet expectations |
TEST_PERFORMANCE | Performance Testing: Evaluates system performance under various load conditions |
TEST_STABILITY | Stability Testing: Checks system reliability during continuous operation |
TEST_CUSTOMIZATION | Custom Testing: Executes tailored test tasks for specific requirements |
MOCK_DATA | Mock Data Generation: Creates fictional data for development and testing |
MOCK_APIS | Mock 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
- Mandatory Property: Each script must explicitly define the
type
field. - Single Type: Each script supports only one task type.
- Case-Sensitive: Type identifiers must strictly follow the specified format.
- 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.