import 'package:test/test.dart'; import 'package:holzleitner_api/holzleitner_api.dart'; // tests for Tour void main() { final instance = TourBuilder(); // TODO add properties to the builder and call build() group(Tour, () { // int accountId test('to test the property `accountId`', () async { // TODO }); // Date date test('to test the property `date`', () async { // TODO }); // String id test('to test the property `id`', () async { // TODO }); // Zeitpunkt des letzten ERP-Sync — für Drift-Erkennung. // DateTime syncedAt test('to test the property `syncedAt`', () async { // TODO }); }); }