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,35 @@
import 'package:test/test.dart';
import 'package:holzleitner_api/holzleitner_api.dart';
// tests for CompleteDeliveryAcknowledgements
void main() {
final instance = CompleteDeliveryAcknowledgementsBuilder();
// TODO add properties to the builder and call build()
group(CompleteDeliveryAcknowledgements, () {
// Notiz-IDs, die zum Abschlusszeitpunkt sichtbar waren und mit-bestätigt wurden (Audit-Robustheit).
// BuiltList<String> acknowledgedNoteIds
test('to test the property `acknowledgedNoteIds`', () async {
// TODO
});
// Fahrzeug des Akteurs (Audit-Spur). Muss zum Account gehören.
// String authorCarId
test('to test the property `authorCarId`', () async {
// TODO
});
// „Anmerkungen zur Lieferung zur Kenntnis genommen.\" — Pflicht nur, wenn Notizen existieren (das prüft der Server).
// bool notesAcknowledged
test('to test the property `notesAcknowledged`', () async {
// TODO
});
// „Ware im ordnungsgemäßen Zustand erhalten / Aufbau korrekt.\" — Pflicht.
// bool receiptConfirmed
test('to test the property `receiptConfirmed`', () async {
// TODO
});
});
}