just gen-client — покрывает links, cashflow-broker, ручные цены, imports/pending, goals/income/rebalance/tax/benchmarks.
127 lines
2.7 KiB
Dart
127 lines
2.7 KiB
Dart
import 'package:test/test.dart';
|
|
import 'package:fintracker_api/fintracker_api.dart';
|
|
|
|
// tests for ImportPreview
|
|
void main() {
|
|
final ImportPreview? instance = /* ImportPreview(...) */ null;
|
|
// TODO add properties to the entity
|
|
|
|
group(ImportPreview, () {
|
|
// String accountExternalId
|
|
test('to test the property `accountExternalId`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// int accountId
|
|
test('to test the property `accountId`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String accountName
|
|
test('to test the property `accountName`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// List<AccountSuggestion> accountSuggestions
|
|
test('to test the property `accountSuggestions`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String broker
|
|
test('to test the property `broker`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// DateTime committedAt
|
|
test('to test the property `committedAt`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// ImportCounts counts
|
|
test('to test the property `counts`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// int duplicateOfId
|
|
test('to test the property `duplicateOfId`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String error
|
|
test('to test the property `error`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String filename
|
|
test('to test the property `filename`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// int id
|
|
test('to test the property `id`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String parseStatus
|
|
test('to test the property `parseStatus`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String parserName
|
|
test('to test the property `parserName`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String parserVersion
|
|
test('to test the property `parserVersion`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// List<PendingInstrumentOut> pendingInstruments
|
|
test('to test the property `pendingInstruments`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// DateTime periodFrom
|
|
test('to test the property `periodFrom`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// DateTime periodTo
|
|
test('to test the property `periodTo`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// ReconciliationOut reconciliation
|
|
test('to test the property `reconciliation`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// List<SampleEventOut> sampleEvents
|
|
test('to test the property `sampleEvents`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String sha256
|
|
test('to test the property `sha256`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// int sizeBytes
|
|
test('to test the property `sizeBytes`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// DateTime uploadedAt
|
|
test('to test the property `uploadedAt`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// List<String> warnings
|
|
test('to test the property `warnings`', () async {
|
|
// TODO
|
|
});
|
|
|
|
});
|
|
}
|