39 lines
848 B
Dart
39 lines
848 B
Dart
import 'package:test/test.dart';
|
|
import 'package:fintracker_api/fintracker_api.dart';
|
|
|
|
// tests for AllocationBucket
|
|
void main() {
|
|
final AllocationBucket? instance = /* AllocationBucket(...) */ null;
|
|
// TODO add properties to the entity
|
|
|
|
group(AllocationBucket, () {
|
|
// String bucket
|
|
test('to test the property `bucket`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// AllocationDimension dimension
|
|
test('to test the property `dimension`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// int holdingCount
|
|
test('to test the property `holdingCount`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// decimal as string
|
|
// String valueRub
|
|
test('to test the property `valueRub`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// decimal as string
|
|
// String weight
|
|
test('to test the property `weight`', () async {
|
|
// TODO
|
|
});
|
|
|
|
});
|
|
}
|