作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我的代码中,我有一个 lookup
方法:
查找.dart
Future<http.Response> httpLookup(String address) {
return kIsWeb
? _httpClient.get(address)
: _httpClient.get(
Uri.https(address, ''),
);
}
kIsWeb
在单元测试期间保持不变?这是我迄今为止尝试过的,但覆盖范围并没有。
@TestOn('browser')
void main (){
test('shoud test lookup', () {
InternetLookup lookup = InternetLookup();
when(mockInternetLookup.httpLookup(any))
.thenAnswer((realInvocation) async => http.Response('success', 200));
lookup.httpLookup('www.google.com');
});
}
最佳答案
您可以使用接口(interface)并模拟它。
abstract class IAppService {
bool getkIsWeb();
}
class AppService implements IAppService {
bool getkIsWeb() {
return kIsWeb;
}
}
在测试中,你必须使用 like as
class MockAppService extends Mock implements IAppService {}
...
when(appService.getkIsWeb())
.thenAnswer((realInvocation) => true);
关于unit-testing - 在 flutter 中测试 kIsWeb 常量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60334121/
在我的代码中,我有一个 lookup方法: 查找.dart Future httpLookup(String address) { return kIsWeb ? _httpC
我是一名优秀的程序员,十分优秀!