openapi-generator-cli -g dart-dio. Генерируется, но коммитится: CI ловит дрейф openapi/openapi.json, а приложение собирается без запуска генератора. Пересобирается через just gen-client после любого изменения роутов.
42 lines
888 B
Dart
42 lines
888 B
Dart
import 'package:test/test.dart';
|
|
import 'package:fintracker_api/fintracker_api.dart';
|
|
|
|
// tests for SourceStatus
|
|
void main() {
|
|
final SourceStatus? instance = /* SourceStatus(...) */ null;
|
|
// TODO add properties to the entity
|
|
|
|
group(SourceStatus, () {
|
|
// String cursor
|
|
test('to test the property `cursor`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// DateTime lastRunAt
|
|
test('to test the property `lastRunAt`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// RunStatus lastRunStatus
|
|
test('to test the property `lastRunStatus`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// DateTime lastSuccessAt
|
|
test('to test the property `lastSuccessAt`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// bool queued
|
|
test('to test the property `queued`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String source_
|
|
test('to test the property `source_`', () async {
|
|
// TODO
|
|
});
|
|
|
|
});
|
|
}
|