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

21 lines
478 B
Dart

import 'package:test/test.dart';
import 'package:tuuli_api/tuuli_api.dart';
// tests for CreateUserDefinition
void main() {
final instance = CreateUserDefinitionBuilder();
// TODO add properties to the builder and call build()
group(CreateUserDefinition, () {
// String username
test('to test the property `username`', () async {
// TODO
});
// String password
test('to test the property `password`', () async {
// TODO
});
});
}