114 lines
2.3 KiB
Dart
114 lines
2.3 KiB
Dart
import 'package:test/test.dart';
|
|
import 'package:fintracker_api/fintracker_api.dart';
|
|
|
|
// tests for EventOut
|
|
void main() {
|
|
final EventOut? instance = /* EventOut(...) */ null;
|
|
// TODO add properties to the entity
|
|
|
|
group(EventOut, () {
|
|
// int accountId
|
|
test('to test the property `accountId`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// decimal as string
|
|
// String accruedInterest
|
|
test('to test the property `accruedInterest`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// decimal as string
|
|
// String amount
|
|
test('to test the property `amount`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// decimal as string
|
|
// String amountRub
|
|
test('to test the property `amountRub`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String currency
|
|
test('to test the property `currency`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String description
|
|
test('to test the property `description`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// bool externalFlow
|
|
test('to test the property `externalFlow`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// decimal as string
|
|
// String fee
|
|
test('to test the property `fee`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// int id
|
|
test('to test the property `id`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// int instrumentId
|
|
test('to test the property `instrumentId`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// EventKind kind
|
|
test('to test the property `kind`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// decimal as string
|
|
// String price
|
|
test('to test the property `price`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String priceCurrency
|
|
test('to test the property `priceCurrency`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// decimal as string
|
|
// String quantity
|
|
test('to test the property `quantity`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// EventStatus status
|
|
test('to test the property `status`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// decimal as string
|
|
// String tax
|
|
test('to test the property `tax`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String ticker
|
|
test('to test the property `ticker`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// DateTime tradeDate
|
|
test('to test the property `tradeDate`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// DateTime ts
|
|
test('to test the property `ts`', () async {
|
|
// TODO
|
|
});
|
|
|
|
});
|
|
}
|