Files
2026-09-18 14:20:50 +03:00

98 lines
1.9 KiB
Dart

import 'package:test/test.dart';
import 'package:fintracker_api/fintracker_api.dart';
// tests for InstrumentOut
void main() {
final InstrumentOut? instance = /* InstrumentOut(...) */ null;
// TODO add properties to the entity
group(InstrumentOut, () {
// AssetClass assetClass
test('to test the property `assetClass`', () async {
// TODO
});
// String board
test('to test the property `board`', () async {
// TODO
});
// String country
test('to test the property `country`', () async {
// TODO
});
// String currency
test('to test the property `currency`', () async {
// TODO
});
// String exchange
test('to test the property `exchange`', () async {
// TODO
});
// String figi
test('to test the property `figi`', () async {
// TODO
});
// int id
test('to test the property `id`', () async {
// TODO
});
// bool isActive
test('to test the property `isActive`', () async {
// TODO
});
// String isin
test('to test the property `isin`', () async {
// TODO
});
// String issuer
test('to test the property `issuer`', () async {
// TODO
});
// int lot
test('to test the property `lot`', () async {
// TODO
});
// DateTime maturityDate
test('to test the property `maturityDate`', () async {
// TODO
});
// String name
test('to test the property `name`', () async {
// TODO
});
// decimal as string
// String nominal
test('to test the property `nominal`', () async {
// TODO
});
// String nominalCurrency
test('to test the property `nominalCurrency`', () async {
// TODO
});
// String sector
test('to test the property `sector`', () async {
// TODO
});
// String ticker
test('to test the property `ticker`', () async {
// TODO
});
});
}