26 lines
578 B
Dart
26 lines
578 B
Dart
import 'package:test/test.dart';
|
|
import 'package:tuuli_api/tuuli_api.dart';
|
|
|
|
// tests for ColumnConditionCompat
|
|
void main() {
|
|
final instance = ColumnConditionCompatBuilder();
|
|
// TODO add properties to the builder and call build()
|
|
|
|
group(ColumnConditionCompat, () {
|
|
// String column
|
|
test('to test the property `column`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String operator_
|
|
test('to test the property `operator_`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// JsonObject value
|
|
test('to test the property `value`', () async {
|
|
// TODO
|
|
});
|
|
|
|
});
|
|
}
|