mirror of
				https://gitlab.com/famedly/fluffychat.git
				synced 2025-11-03 22:07:23 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			438 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			438 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
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',
 | 
						|
        ),
 | 
						|
      ),
 | 
						|
    );
 | 
						|
  });
 | 
						|
}
 |