我flutter_driver
以前用于集成测试,并且能够通过主机的环境变量将参数插入测试,因为测试是从主机运行的。
对于另一个项目,我现在使用integration_test包。
测试不再在主机上运行,而是在目标上运行,因此当尝试通过环境变量传递参数时,测试不会得到它们。
我看到了https://github.com/flutter/flutter/issues/76852我认为这可能会有所帮助,但现在还有其他选择吗?
我flutter_driver
以前用于集成测试,并且能够通过主机的环境变量将参数插入测试,因为测试是从主机运行的。
对于另一个项目,我现在使用integration_test包。
测试不再在主机上运行,而是在目标上运行,因此当尝试通过环境变量传递参数时,测试不会得到它们。
我看到了https://github.com/flutter/flutter/issues/76852我认为这可能会有所帮助,但现在还有其他选择吗?
我在 android 模拟器上运行 integration_tests 时遇到了同样的问题。查看bool.fromEnvironment()
显示的文档:
/// This constructor is only guaranteed to work when invoked as `const`.
/// It may work as a non-constant invocation on some platforms ...
所以这对我用android测试有用:
const skipFirst = bool.fromEnvironment('SKIP_FIRST');
如果您使用的是 integration_test 包,测试代码可以在运行您的应用程序之前设置全局变量,并从使用指定的环境中提取它们--dart-define
例如:
// In main.dart
var environment = 'production';
void main() {
if (environment == 'development') {
// setup configuration for you application
}
runApp(const MyApp());
}
// In your integration_test.dart
import 'package:my_app/main.dart' as app;
void main() {
IntegrationTestWidgetsFlutterBinding.ensureInitialized();
setUpAll(() {
var testingEnvironment = const String.fromEnvironment('TESTING_ENVIRONMENT');
if (testingEnvironment != null) {
app.environment = testingEnvironment;
}
});
testWidgets('my test', (WidgetTester tester) async {
app.main();
await tester.pumpAndSettle();
// Perform your test
});
}
然后使用命令行flutter test integration_test.dart --dart-define TESTING_ENVIRONMENT=development
String.fromEnvironment
或者,您可以直接从您的应用程序代码中提取它们。