chore(app): сгенерированный Dart-клиент с методами аналитики
just gen-client после новых роутов.
This commit is contained in:
@@ -0,0 +1,60 @@
|
||||
import 'package:test/test.dart';
|
||||
import 'package:fintracker_api/fintracker_api.dart';
|
||||
|
||||
// tests for LotOut
|
||||
void main() {
|
||||
final LotOut? instance = /* LotOut(...) */ null;
|
||||
// TODO add properties to the entity
|
||||
|
||||
group(LotOut, () {
|
||||
// int accountId
|
||||
test('to test the property `accountId`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// DateTime closedAt
|
||||
test('to test the property `closedAt`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// String costCurrency
|
||||
test('to test the property `costCurrency`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// decimal as string
|
||||
// String costPerUnit
|
||||
test('to test the property `costPerUnit`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// decimal as string
|
||||
// String costTotalRub
|
||||
test('to test the property `costTotalRub`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// int id
|
||||
test('to test the property `id`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// DateTime openDate
|
||||
test('to test the property `openDate`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// decimal as string
|
||||
// String qtyOpen
|
||||
test('to test the property `qtyOpen`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// decimal as string
|
||||
// String qtyRemaining
|
||||
test('to test the property `qtyRemaining`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user