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