Files
Dennis Nemec a9bf8ecdd1 Final commit.
2026-06-01 17:12:28 +02:00

28 lines
627 B
Dart

import 'package:test/test.dart';
import 'package:holzleitner_api/holzleitner_api.dart';
// tests for DeliveryCredit
void main() {
final instance = DeliveryCreditBuilder();
// TODO add properties to the builder and call build()
group(DeliveryCredit, () {
// Gutschrift-Betrag in Cent (> 0, ≤ 15000).
// int amountCents
test('to test the property `amountCents`', () async {
// TODO
});
// String deliveryId
test('to test the property `deliveryId`', () async {
// TODO
});
// String reason
test('to test the property `reason`', () async {
// TODO
});
});
}