26 lines
554 B
Dart
26 lines
554 B
Dart
import 'package:test/test.dart';
|
|
import 'package:tuuli_api/tuuli_api.dart';
|
|
|
|
// tests for ValidationError
|
|
void main() {
|
|
final instance = ValidationErrorBuilder();
|
|
// TODO add properties to the builder and call build()
|
|
|
|
group(ValidationError, () {
|
|
// BuiltList<LocationInner> loc
|
|
test('to test the property `loc`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String msg
|
|
test('to test the property `msg`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String type
|
|
test('to test the property `type`', () async {
|
|
// TODO
|
|
});
|
|
|
|
});
|
|
}
|