Files
fin-tracker/app/packages/api_client/test/scope_out_test.dart
T
2026-09-18 14:20:50 +03:00

27 lines
545 B
Dart

import 'package:test/test.dart';
import 'package:fintracker_api/fintracker_api.dart';
// tests for ScopeOut
void main() {
final ScopeOut? instance = /* ScopeOut(...) */ null;
// TODO add properties to the entity
group(ScopeOut, () {
// List<int> accountIds
test('to test the property `accountIds`', () async {
// TODO
});
// String name
test('to test the property `name`', () async {
// TODO
});
// String scope
test('to test the property `scope`', () async {
// TODO
});
});
}