2022-10-06 18:25:54 +02:00
|
|
|
//
|
|
|
|
// AUTO-GENERATED FILE, DO NOT MODIFY!
|
|
|
|
//
|
|
|
|
// @dart=2.12
|
|
|
|
|
|
|
|
// ignore_for_file: unused_element, unused_import
|
|
|
|
// ignore_for_file: always_put_required_named_parameters_first
|
|
|
|
// ignore_for_file: constant_identifier_names
|
|
|
|
// ignore_for_file: lines_longer_than_80_chars
|
|
|
|
|
|
|
|
import 'package:openapi/api.dart';
|
|
|
|
import 'package:test/test.dart';
|
|
|
|
|
2023-03-20 17:55:28 +02:00
|
|
|
// tests for JobCountsDto
|
2022-10-06 18:25:54 +02:00
|
|
|
void main() {
|
2023-03-20 17:55:28 +02:00
|
|
|
// final instance = JobCountsDto();
|
2022-10-06 18:25:54 +02:00
|
|
|
|
2023-03-20 17:55:28 +02:00
|
|
|
group('test JobCountsDto', () {
|
2022-12-07 00:10:04 +02:00
|
|
|
// int active
|
2022-10-06 18:25:54 +02:00
|
|
|
test('to test the property `active`', () async {
|
|
|
|
// TODO
|
|
|
|
});
|
|
|
|
|
2022-12-07 00:10:04 +02:00
|
|
|
// int completed
|
2022-10-06 18:25:54 +02:00
|
|
|
test('to test the property `completed`', () async {
|
|
|
|
// TODO
|
|
|
|
});
|
|
|
|
|
2022-12-07 00:10:04 +02:00
|
|
|
// int delayed
|
2022-10-06 18:25:54 +02:00
|
|
|
test('to test the property `delayed`', () async {
|
|
|
|
// TODO
|
|
|
|
});
|
|
|
|
|
2023-08-01 18:49:18 +02:00
|
|
|
// int failed
|
|
|
|
test('to test the property `failed`', () async {
|
2022-10-06 18:25:54 +02:00
|
|
|
// TODO
|
|
|
|
});
|
|
|
|
|
2023-03-29 17:33:03 +02:00
|
|
|
// int paused
|
|
|
|
test('to test the property `paused`', () async {
|
|
|
|
// TODO
|
|
|
|
});
|
|
|
|
|
2023-08-01 18:49:18 +02:00
|
|
|
// int waiting
|
|
|
|
test('to test the property `waiting`', () async {
|
|
|
|
// TODO
|
|
|
|
});
|
|
|
|
|
2022-10-06 18:25:54 +02:00
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|