chore(app): перегенерировать Dart-клиент
Портфели, создание счетов, ручные события, PATCH инструмента, ScopeCardOut, MetricsStatusOut, логотипы в HoldingOut.
This commit is contained in:
@@ -0,0 +1,46 @@
|
||||
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
|
||||
});
|
||||
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user