just gen-client — покрывает links, cashflow-broker, ручные цены, imports/pending, goals/income/rebalance/tax/benchmarks.
102 lines
2.1 KiB
Dart
102 lines
2.1 KiB
Dart
import 'package:test/test.dart';
|
|
import 'package:fintracker_api/fintracker_api.dart';
|
|
|
|
// tests for ImportSummary
|
|
void main() {
|
|
final ImportSummary? instance = /* ImportSummary(...) */ null;
|
|
// TODO add properties to the entity
|
|
|
|
group(ImportSummary, () {
|
|
// 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
|
|
});
|
|
|
|
// 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
|
|
});
|
|
|
|
// DateTime periodFrom
|
|
test('to test the property `periodFrom`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// DateTime periodTo
|
|
test('to test the property `periodTo`', () 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
|
|
});
|
|
|
|
});
|
|
}
|