just gen-client — покрывает links, cashflow-broker, ручные цены, imports/pending, goals/income/rebalance/tax/benchmarks.
96 lines
2.0 KiB
Dart
96 lines
2.0 KiB
Dart
import 'package:test/test.dart';
|
|
import 'package:fintracker_api/fintracker_api.dart';
|
|
|
|
// tests for SampleEventOut
|
|
void main() {
|
|
final SampleEventOut? instance = /* SampleEventOut(...) */ null;
|
|
// TODO add properties to the entity
|
|
|
|
group(SampleEventOut, () {
|
|
// decimal as string
|
|
// String amount
|
|
test('to test the property `amount`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String currency
|
|
test('to test the property `currency`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String dedupeKey
|
|
test('to test the property `dedupeKey`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String description
|
|
test('to test the property `description`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// decimal as string
|
|
// String fee
|
|
test('to test the property `fee`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// int instrumentId
|
|
test('to test the property `instrumentId`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String instrumentKey
|
|
test('to test the property `instrumentKey`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String instrumentName
|
|
test('to test the property `instrumentName`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// bool isDuplicate
|
|
test('to test the property `isDuplicate`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String kind
|
|
test('to test the property `kind`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// int lineNo
|
|
test('to test the property `lineNo`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// decimal as string
|
|
// String price
|
|
test('to test the property `price`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// decimal as string
|
|
// String quantity
|
|
test('to test the property `quantity`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// DateTime settleDate
|
|
test('to test the property `settleDate`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// DateTime tradeDate
|
|
test('to test the property `tradeDate`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String tradeNo
|
|
test('to test the property `tradeNo`', () async {
|
|
// TODO
|
|
});
|
|
|
|
});
|
|
}
|