openapi-generator-cli -g dart-dio. Генерируется, но коммитится: CI ловит дрейф openapi/openapi.json, а приложение собирается без запуска генератора. Пересобирается через just gen-client после любого изменения роутов.
44 lines
919 B
Dart
44 lines
919 B
Dart
import 'package:test/test.dart';
|
|
import 'package:fintracker_api/fintracker_api.dart';
|
|
|
|
// tests for AccountBalance
|
|
void main() {
|
|
final AccountBalance? instance = /* AccountBalance(...) */ null;
|
|
// TODO add properties to the entity
|
|
|
|
group(AccountBalance, () {
|
|
// int accountId
|
|
test('to test the property `accountId`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// decimal as string
|
|
// String balance
|
|
test('to test the property `balance`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// decimal as string
|
|
// String balanceRub
|
|
test('to test the property `balanceRub`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String currency
|
|
test('to test the property `currency`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String name
|
|
test('to test the property `name`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// AccountRole role
|
|
test('to test the property `role`', () async {
|
|
// TODO
|
|
});
|
|
|
|
});
|
|
}
|