import 'package:test/test.dart'; import 'package:holzleitner_api/holzleitner_api.dart'; // tests for DeliveryNote void main() { final instance = DeliveryNoteBuilder(); // TODO add properties to the builder and call build() group(DeliveryNote, () { // Fahrzeug, falls bekannt — nullable bis das Backend Cars verwaltet. // String authorCarId test('to test the property `authorCarId`', () async { // TODO }); // Personalnummer des Akteurs (aus dem JWT). Pflicht. // int authorPersonalnummer test('to test the property `authorPersonalnummer`', () async { // TODO }); // DateTime createdAt test('to test the property `createdAt`', () async { // TODO }); // String deliveryId test('to test the property `deliveryId`', () async { // TODO }); // String id test('to test the property `id`', () async { // TODO }); // Referenz auf einen Bild-Anhang (z. B. Object-Storage-Key/URL). // String imageAttachment test('to test the property `imageAttachment`', () async { // TODO }); // String text test('to test the property `text`', () async { // TODO }); }); }