21 lines
445 B
Dart
21 lines
445 B
Dart
import 'package:test/test.dart';
|
|
import 'package:tuuli_api/tuuli_api.dart';
|
|
|
|
// tests for AuthModel
|
|
void main() {
|
|
final instance = AuthModelBuilder();
|
|
// TODO add properties to the builder and call build()
|
|
|
|
group(AuthModel, () {
|
|
// String username
|
|
test('to test the property `username`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String password
|
|
test('to test the property `password`', () async {
|
|
// TODO
|
|
});
|
|
|
|
});
|
|
}
|