16 lines
390 B
Dart
16 lines
390 B
Dart
import 'package:test/test.dart';
|
|
import 'package:tuuli_api/tuuli_api.dart';
|
|
|
|
// tests for HTTPValidationError
|
|
void main() {
|
|
final instance = HTTPValidationErrorBuilder();
|
|
// TODO add properties to the builder and call build()
|
|
|
|
group(HTTPValidationError, () {
|
|
// BuiltList<ValidationError> detail
|
|
test('to test the property `detail`', () async {
|
|
// TODO
|
|
});
|
|
|
|
});
|
|
}
|