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

32 lines
703 B
Dart

import 'package:test/test.dart';
import 'package:holzleitner_api/holzleitner_api.dart';
// tests for DeliveryServiceValue
void main() {
final instance = DeliveryServiceValueBuilder();
// TODO add properties to the builder and call build()
group(DeliveryServiceValue, () {
// bool boolValue
test('to test the property `boolValue`', () async {
// TODO
});
// String deliveryId
test('to test the property `deliveryId`', () async {
// TODO
});
// int numericValue
test('to test the property `numericValue`', () async {
// TODO
});
// String serviceId
test('to test the property `serviceId`', () async {
// TODO
});
});
}