34 lines
707 B
Dart
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
|
|
});
|
|
|
|
});
|
|
}
|