1.0.0
This commit is contained in:
commit
f076ae3790
82 changed files with 7250 additions and 0 deletions
36
test/table_definition_test.dart
Normal file
36
test/table_definition_test.dart
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
import 'package:test/test.dart';
|
||||
import 'package:tuuli_api/tuuli_api.dart';
|
||||
|
||||
// tests for TableDefinition
|
||||
void main() {
|
||||
final instance = TableDefinitionBuilder();
|
||||
// TODO add properties to the builder and call build()
|
||||
|
||||
group(TableDefinition, () {
|
||||
// String tableId
|
||||
test('to test the property `tableId`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// String tableName
|
||||
test('to test the property `tableName`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// String columns
|
||||
test('to test the property `columns`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// bool system
|
||||
test('to test the property `system`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// bool hidden
|
||||
test('to test the property `hidden`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
});
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue