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