Files
Holzleitner-Lieferservice-App/packages/holzleitner_api/test/delivery_service_response_test.dart
Dennis Nemec a9bf8ecdd1 Final commit.
2026-06-01 17:12:28 +02:00

17 lines
406 B
Dart

import 'package:test/test.dart';
import 'package:holzleitner_api/holzleitner_api.dart';
// tests for DeliveryServiceResponse
void main() {
final instance = DeliveryServiceResponseBuilder();
// TODO add properties to the builder and call build()
group(DeliveryServiceResponse, () {
// DeliveryServiceValue value
test('to test the property `value`', () async {
// TODO
});
});
}