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,36 @@
|
||||
import 'package:test/test.dart';
|
||||
import 'package:fintracker_api/fintracker_api.dart';
|
||||
|
||||
// tests for RefreshLogOut
|
||||
void main() {
|
||||
final RefreshLogOut? instance = /* RefreshLogOut(...) */ null;
|
||||
// TODO add properties to the entity
|
||||
|
||||
group(RefreshLogOut, () {
|
||||
// String error
|
||||
test('to test the property `error`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// DateTime finishedAt
|
||||
test('to test the property `finishedAt`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// int id
|
||||
test('to test the property `id`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// DateTime startedAt
|
||||
test('to test the property `startedAt`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// String trigger
|
||||
test('to test the property `trigger`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user