【发布时间】:2021-02-22 00:12:45
【问题描述】:
所以,我正在尝试测试我的颤振应用程序。这就是我的工作
class MockSplashScreenBloc extends MockBloc<SplashScreenState>
implements SplashScreenBloc {}
void main() {
MockSplashScreenBloc splashScreenBloc;
Widget MyWidget() {
return MaterialApp(
home: BlocProvider(
create: (context) {
return SplashScreenBloc(url: "google.com");
},
child: SplashScreen(),
),
);
}
group('Splash Screen Widget Test', () {
setUp(() {
splashScreenBloc = MockSplashScreenBloc();
});
tearDown(() {
splashScreenBloc?.close();
});
testWidgets('should render Container when state is Default State',
(WidgetTester tester) async {
when(splashScreenBloc.state).thenAnswer((_) => Default());
await tester.pumpWidget(MyWidget());
expect(find.byKey(ValueKey("container_empty")), findsOneWidget);
});
testWidgets('should render LoadingIndicator when state is Loading State',
(WidgetTester tester) async {
when(splashScreenBloc.state).thenReturn(LoadingState());
await tester.pumpWidget(MyWidget());
expect(find.byKey(ValueKey("splash_loading_bar")), findsOneWidget);
});
});
}
这是我的SplashScreen
class SplashScreen extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: BlocBuilder<SplashScreenBloc, SplashScreenState>(
builder: (context, state) {
if (state is LoadingState) {
return CircularProgressIndicator(
key: Key("splash_loading_bar"),
);
} else if (state is NotConnected) {
return Text("Could not connect to server",
key: ValueKey("splash_screen_not_connected"));
} else if (state is Connected) {
return Text(
"Connected",
key: Key("splash_screen_connected"),
);
} else {
return Container(key: Key("container_empty"));
}
},
),
),
);
}
}
我无法通过这个测试 should render LoadingIndicator when state is Loading State ,我已经尝试使用 expect(find.byType(CircularProgressIndicator), findsOneWidget); 但它仍然无法正常工作,这是错误
══╡ FLUTTER 测试框架捕获的异常 ╞═════════════════════════════════════════════════ ═══以下 运行测试时抛出了 TestFailure 对象:预期:恰好一个 小部件树中的匹配节点实际:_KeyFinder:](忽略后台小部件)>
其中:表示没有找到,但应该有一个
我该如何解决?
【问题讨论】:
标签: flutter flutter-test