Teddy b37bca5471
Fixes #2954 -- Ingest sample data for profile, test suite and co. (#6586)
Fixes #2954 -- Ingest sample data for profile, test suite and co. (#6586)
2022-08-04 19:44:21 +02:00

39 lines
1.5 KiB
JSON

{
"tests": [
{
"testSuiteName": "critical_metrics_suite",
"testSuiteDescription": "This is a critical test suite running tests important for the business",
"scheduleInterval": "0 0 * * MON",
"testCases": [
{
"name": "table_column_count_equals",
"description": "test the number of column in table",
"entityFqn": "sample_data.ecommerce_db.shopify.dim_address",
"testDefinitionName": "TableColumnCountToEqual",
"parameterValues": [
{
"name": "columnCount",
"value": 10
}
]
},
{
"name": "table_column_count_between",
"description": "test the number of column in table is between x and y",
"entityFqn": "sample_data.ecommerce_db.shopify.dim_address",
"testDefinitionName": "TableColumnCountToBeBetween",
"parameterValues": [
{
"name": "minColValue",
"value": 1
},
{
"name": "maxColValue",
"value": 10
}
]
}
]
}
]
}