Api upgrade

This commit is contained in:
Andrew 2023-04-24 20:58:26 +07:00
parent aa04b550c6
commit 9e67cc912b
11 changed files with 392 additions and 107 deletions

View file

@ -0,0 +1,21 @@
import 'package:test/test.dart';
import 'package:tuuli_api/tuuli_api.dart';
// tests for BodyGetItemsFromTableItemsTableNamePost
void main() {
final instance = BodyGetItemsFromTableItemsTableNamePostBuilder();
// TODO add properties to the builder and call build()
group(BodyGetItemsFromTableItemsTableNamePost, () {
// BuiltList<String> fields (default value: ListBuilder())
test('to test the property `fields`', () async {
// TODO
});
// BuiltList<ColumnConditionCompat> where (default value: ListBuilder())
test('to test the property `where`', () async {
// TODO
});
});
}