Портфели, создание счетов, ручные события, PATCH инструмента, ScopeCardOut, MetricsStatusOut, логотипы в HoldingOut.
47 lines
1.0 KiB
Dart
47 lines
1.0 KiB
Dart
import 'package:test/test.dart';
|
|
import 'package:fintracker_api/fintracker_api.dart';
|
|
|
|
|
|
/// tests for PortfoliosApi
|
|
void main() {
|
|
final instance = FintrackerApi().getPortfoliosApi();
|
|
|
|
group(PortfoliosApi, () {
|
|
// Create
|
|
//
|
|
//Future<PortfolioOut> portfoliosCreate(PortfolioCreate portfolioCreate) async
|
|
test('test portfoliosCreate', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Delete
|
|
//
|
|
//Future portfoliosDelete(int portfolioId) async
|
|
test('test portfoliosDelete', () async {
|
|
// TODO
|
|
});
|
|
|
|
// List
|
|
//
|
|
//Future<List<PortfolioOut>> portfoliosList() async
|
|
test('test portfoliosList', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Patch
|
|
//
|
|
//Future<PortfolioOut> portfoliosPatch(int portfolioId, PortfolioPatch portfolioPatch) async
|
|
test('test portfoliosPatch', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Set Accounts
|
|
//
|
|
//Future<PortfolioOut> portfoliosSetAccounts(int portfolioId, PortfolioAccountsIn portfolioAccountsIn) async
|
|
test('test portfoliosSetAccounts', () async {
|
|
// TODO
|
|
});
|
|
|
|
});
|
|
}
|