openapi-generator-cli -g dart-dio. Генерируется, но коммитится: CI ловит дрейф openapi/openapi.json, а приложение собирается без запуска генератора. Пересобирается через just gen-client после любого изменения роутов.
58 lines
1.2 KiB
Dart
58 lines
1.2 KiB
Dart
import 'package:test/test.dart';
|
|
import 'package:fintracker_api/fintracker_api.dart';
|
|
|
|
// tests for CashFlowMonth
|
|
void main() {
|
|
final CashFlowMonth? instance = /* CashFlowMonth(...) */ null;
|
|
// TODO add properties to the entity
|
|
|
|
group(CashFlowMonth, () {
|
|
// decimal as string
|
|
// String baselineRub
|
|
test('to test the property `baselineRub`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// decimal as string
|
|
// String expenseRub
|
|
test('to test the property `expenseRub`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// decimal as string
|
|
// String incomeRub
|
|
test('to test the property `incomeRub`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// DateTime month
|
|
test('to test the property `month`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// decimal as string
|
|
// String oneOffRub
|
|
test('to test the property `oneOffRub`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// decimal as string
|
|
// String savingsRate
|
|
test('to test the property `savingsRate`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// decimal as string
|
|
// String savingsTransferRub
|
|
test('to test the property `savingsTransferRub`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// int txnCount
|
|
test('to test the property `txnCount`', () async {
|
|
// TODO
|
|
});
|
|
|
|
});
|
|
}
|