Портфели, создание счетов, ручные события, PATCH инструмента, ScopeCardOut, MetricsStatusOut, логотипы в HoldingOut.
27 lines
601 B
Dart
27 lines
601 B
Dart
import 'package:test/test.dart';
|
|
import 'package:fintracker_api/fintracker_api.dart';
|
|
|
|
// tests for MetricsStatusOut
|
|
void main() {
|
|
final MetricsStatusOut? instance = /* MetricsStatusOut(...) */ null;
|
|
// TODO add properties to the entity
|
|
|
|
group(MetricsStatusOut, () {
|
|
// bool consistent
|
|
test('to test the property `consistent`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// RefreshLogOut lastRefresh
|
|
test('to test the property `lastRefresh`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// bool refreshing
|
|
test('to test the property `refreshing`', () async {
|
|
// TODO
|
|
});
|
|
|
|
});
|
|
}
|