openapi-generator-cli -g dart-dio. Генерируется, но коммитится: CI ловит дрейф openapi/openapi.json, а приложение собирается без запуска генератора. Пересобирается через just gen-client после любого изменения роутов.
47 lines
963 B
Dart
47 lines
963 B
Dart
import 'package:test/test.dart';
|
|
import 'package:fintracker_api/fintracker_api.dart';
|
|
|
|
// tests for DataQualityRow
|
|
void main() {
|
|
final DataQualityRow? instance = /* DataQualityRow(...) */ null;
|
|
// TODO add properties to the entity
|
|
|
|
group(DataQualityRow, () {
|
|
// String checkName
|
|
test('to test the property `checkName`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// DateTime computedAt
|
|
test('to test the property `computedAt`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// int count
|
|
test('to test the property `count`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String detail
|
|
test('to test the property `detail`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// int id
|
|
test('to test the property `id`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Map<String, Object> ref
|
|
test('to test the property `ref`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String severity
|
|
test('to test the property `severity`', () async {
|
|
// TODO
|
|
});
|
|
|
|
});
|
|
}
|