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