openapi-generator-cli -g dart-dio. Генерируется, но коммитится: CI ловит дрейф openapi/openapi.json, а приложение собирается без запуска генератора. Пересобирается через just gen-client после любого изменения роутов.
67 lines
1.4 KiB
Dart
67 lines
1.4 KiB
Dart
import 'package:test/test.dart';
|
|
import 'package:fintracker_api/fintracker_api.dart';
|
|
|
|
// tests for SyncRunOut
|
|
void main() {
|
|
final SyncRunOut? instance = /* SyncRunOut(...) */ null;
|
|
// TODO add properties to the entity
|
|
|
|
group(SyncRunOut, () {
|
|
// Map<String, Object> counts
|
|
test('to test the property `counts`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String cursorAfter
|
|
test('to test the property `cursorAfter`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String cursorBefore
|
|
test('to test the property `cursorBefore`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String error
|
|
test('to test the property `error`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// DateTime finishedAt
|
|
test('to test the property `finishedAt`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String id
|
|
test('to test the property `id`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String source_
|
|
test('to test the property `source_`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// DateTime startedAt
|
|
test('to test the property `startedAt`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// RunStatus status
|
|
test('to test the property `status`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String triggeredBy
|
|
test('to test the property `triggeredBy`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// List<Object> warnings
|
|
test('to test the property `warnings`', () async {
|
|
// TODO
|
|
});
|
|
|
|
});
|
|
}
|