tuuli_api/test/table_definition_test.dart
2023-04-24 10:46:16 +07:00

36 lines
752 B
Dart

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
});
});
}