26 lines
578 B
Dart
26 lines
578 B
Dart
import 'package:test/test.dart';
|
|
import 'package:tuuli_api/tuuli_api.dart';
|
|
|
|
// tests for UserUpdateDefinition
|
|
void main() {
|
|
final instance = UserUpdateDefinitionBuilder();
|
|
// TODO add properties to the builder and call build()
|
|
|
|
group(UserUpdateDefinition, () {
|
|
// int userId
|
|
test('to test the property `userId`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String password
|
|
test('to test the property `password`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String accessToken
|
|
test('to test the property `accessToken`', () async {
|
|
// TODO
|
|
});
|
|
|
|
});
|
|
}
|