Files
fin-tracker/app/packages/api_client/test/price_point_test.dart
T
2026-09-18 14:20:50 +03:00

34 lines
707 B
Dart

import 'package:test/test.dart';
import 'package:fintracker_api/fintracker_api.dart';
// tests for PricePoint
void main() {
final PricePoint? instance = /* PricePoint(...) */ null;
// TODO add properties to the entity
group(PricePoint, () {
// decimal as string
// String accruedInterest
test('to test the property `accruedInterest`', () async {
// TODO
});
// decimal as string
// String close
test('to test the property `close`', () async {
// TODO
});
// String currency
test('to test the property `currency`', () async {
// TODO
});
// DateTime d
test('to test the property `d`', () async {
// TODO
});
});
}