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 AccountPatch
|
||||
void main() {
|
||||
final AccountPatch? instance = /* AccountPatch(...) */ null;
|
||||
// TODO add properties to the entity
|
||||
|
||||
group(AccountPatch, () {
|
||||
// bool includeInNetWorth
|
||||
test('to test the property `includeInNetWorth`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// int mirrorOfAccountId
|
||||
test('to test the property `mirrorOfAccountId`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// String name
|
||||
test('to test the property `name`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// EventSource primaryEventSource
|
||||
test('to test the property `primaryEventSource`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// AccountRole role
|
||||
test('to test the property `role`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user