Files
fin-tracker/app/packages/api_client/test/data_quality_row_test.dart
T
Dmitry 90ba198c2a chore(app): сгенерированный Dart-клиент из OpenAPI
openapi-generator-cli -g dart-dio. Генерируется, но коммитится: CI ловит дрейф
openapi/openapi.json, а приложение собирается без запуска генератора.
Пересобирается через just gen-client после любого изменения роутов.
2026-09-18 13:44:09 +03:00

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
});
});
}