just gen-client — покрывает links, cashflow-broker, ручные цены, imports/pending, goals/income/rebalance/tax/benchmarks.
94 lines
1.9 KiB
Dart
94 lines
1.9 KiB
Dart
import 'package:test/test.dart';
|
|
import 'package:fintracker_api/fintracker_api.dart';
|
|
|
|
// tests for PendingInstrumentOut
|
|
void main() {
|
|
final PendingInstrumentOut? instance = /* PendingInstrumentOut(...) */ null;
|
|
// TODO add properties to the entity
|
|
|
|
group(PendingInstrumentOut, () {
|
|
// String assetClassHint
|
|
test('to test the property `assetClassHint`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String board
|
|
test('to test the property `board`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// DateTime createdAt
|
|
test('to test the property `createdAt`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String currency
|
|
test('to test the property `currency`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// int firstSeenFileId
|
|
test('to test the property `firstSeenFileId`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// int id
|
|
test('to test the property `id`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// int instrumentId
|
|
test('to test the property `instrumentId`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String isin
|
|
test('to test the property `isin`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String name
|
|
test('to test the property `name`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// int occurrences
|
|
test('to test the property `occurrences`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// decimal as string
|
|
// String samplePrice
|
|
test('to test the property `samplePrice`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// decimal as string
|
|
// String sampleQuantity
|
|
test('to test the property `sampleQuantity`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String source_
|
|
test('to test the property `source_`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String sourceKey
|
|
test('to test the property `sourceKey`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String status
|
|
test('to test the property `status`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String ticker
|
|
test('to test the property `ticker`', () async {
|
|
// TODO
|
|
});
|
|
|
|
});
|
|
}
|