Files
Dennis Nemec a9bf8ecdd1 Final commit.
2026-06-01 17:12:28 +02:00

17 lines
373 B
Dart

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