chore(app): сгенерированный Dart-клиент из OpenAPI
openapi-generator-cli -g dart-dio. Генерируется, но коммитится: CI ловит дрейф openapi/openapi.json, а приложение собирается без запуска генератора. Пересобирается через just gen-client после любого изменения роутов.
This commit is contained in:
@@ -0,0 +1,46 @@
|
||||
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
|
||||
});
|
||||
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user