27 lines
545 B
Dart
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
|
|
});
|
|
|
|
});
|
|
}
|