16 lines
355 B
Dart
16 lines
355 B
Dart
import 'package:test/test.dart';
|
|
import 'package:tuuli_api/tuuli_api.dart';
|
|
|
|
// tests for OkResponse
|
|
void main() {
|
|
final instance = OkResponseBuilder();
|
|
// TODO add properties to the builder and call build()
|
|
|
|
group(OkResponse, () {
|
|
// bool ok (default value: true)
|
|
test('to test the property `ok`', () async {
|
|
// TODO
|
|
});
|
|
|
|
});
|
|
}
|