Files
fin-tracker/app/packages/api_client/test/pending_instrument_out_test.dart
T
Dmitry ccd06f32f7 chore(app): сгенерированный Dart-клиент
just gen-client — покрывает links, cashflow-broker, ручные цены,
imports/pending, goals/income/rebalance/tax/benchmarks.
2026-09-19 10:46:09 +03:00

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
});
});
}