just gen-client — покрывает links, cashflow-broker, ручные цены, imports/pending, goals/income/rebalance/tax/benchmarks.
17 lines
408 B
Dart
17 lines
408 B
Dart
import 'package:test/test.dart';
|
|
import 'package:fintracker_api/fintracker_api.dart';
|
|
|
|
// tests for BenchmarkComparison
|
|
void main() {
|
|
final BenchmarkComparison? instance = /* BenchmarkComparison(...) */ null;
|
|
// TODO add properties to the entity
|
|
|
|
group(BenchmarkComparison, () {
|
|
// List<BenchmarkComparisonOut> rows
|
|
test('to test the property `rows`', () async {
|
|
// TODO
|
|
});
|
|
|
|
});
|
|
}
|