refactor: MVC sign up password view

This commit is contained in:
Christian Pauly 2021-04-12 17:40:45 +02:00
commit ca70ec0240
4 changed files with 101 additions and 67 deletions

View file

@ -0,0 +1,16 @@
import 'package:fluffychat/controllers/sign_up_password_controller.dart';
import 'package:fluffychat/main.dart';
import 'package:flutter_test/flutter_test.dart';
void main() {
testWidgets('Test if the widget can be created', (WidgetTester tester) async {
await tester.pumpWidget(
FluffyChatApp(
testWidget: SignUpPassword(
'test_user',
displayname: 'Test User',
),
),
);
});
}