This commit is contained in:
Andrew 2023-04-24 10:46:16 +07:00
commit f076ae3790
82 changed files with 7250 additions and 0 deletions

View file

@ -0,0 +1,16 @@
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
});
});
}