Final commit.

This commit is contained in:
Dennis Nemec
2026-06-01 17:12:28 +02:00
parent 3ecbc82885
commit a9bf8ecdd1
385 changed files with 29081 additions and 12089 deletions

View File

@ -0,0 +1,17 @@
import 'package:test/test.dart';
import 'package:holzleitner_api/holzleitner_api.dart';
// tests for DeliveryCreditResponse
void main() {
final instance = DeliveryCreditResponseBuilder();
// TODO add properties to the builder and call build()
group(DeliveryCreditResponse, () {
// Aktueller Stand nach dem Ereignis — `None`, wenn (zuletzt) entfernt.
// DeliveryCredit credit
test('to test the property `credit`', () async {
// TODO
});
});
}