openapi-generator-cli -g dart-dio. Генерируется, но коммитится: CI ловит дрейф openapi/openapi.json, а приложение собирается без запуска генератора. Пересобирается через just gen-client после любого изменения роутов.
62 lines
1.2 KiB
Dart
62 lines
1.2 KiB
Dart
import 'package:test/test.dart';
|
|
import 'package:fintracker_api/fintracker_api.dart';
|
|
|
|
// tests for RuleOut
|
|
void main() {
|
|
final RuleOut? instance = /* RuleOut(...) */ null;
|
|
// TODO add properties to the entity
|
|
|
|
group(RuleOut, () {
|
|
// bool enabled
|
|
test('to test the property `enabled`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// int id
|
|
test('to test the property `id`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// RuleKind kind
|
|
test('to test the property `kind`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// DateTime lastMatchedAt
|
|
test('to test the property `lastMatchedAt`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// int matchCount
|
|
test('to test the property `matchCount`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// RuleMatchType matchType
|
|
test('to test the property `matchType`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String note
|
|
test('to test the property `note`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String pattern
|
|
test('to test the property `pattern`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// int priority
|
|
test('to test the property `priority`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String value
|
|
test('to test the property `value`', () async {
|
|
// TODO
|
|
});
|
|
|
|
});
|
|
}
|