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 ValidationError
|
||||
void main() {
|
||||
final ValidationError? instance = /* ValidationError(...) */ null;
|
||||
// TODO add properties to the entity
|
||||
|
||||
group(ValidationError, () {
|
||||
// Object ctx
|
||||
test('to test the property `ctx`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// Object input
|
||||
test('to test the property `input`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// List<LocationInner> loc
|
||||
test('to test the property `loc`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// String msg
|
||||
test('to test the property `msg`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// String type
|
||||
test('to test the property `type`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user