Last active
June 10, 2019 20:17
-
-
Save hjJunior/237412622d27d0d42be7ae32f6c1f8e5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class MyIp { | |
Injector get _injector => Injector.getInjector(); | |
Client get _client => _injector.get<Client>(); | |
Future<String> get ipAddress async { | |
final apiResult = await _client.get('https://api.ipify.org/?format=json'); | |
return json.decode(apiResult.body)['ip']; | |
} | |
} | |
// Testing | |
void main() { | |
setUpAll(() { | |
final injector = Injector.getInjector(); | |
final fakeClient = MockClient((_) async => | |
Response(json.encode({"ip": "192.168.0.1"}), 200) | |
); | |
injector.map((i) => fakeClient); | |
}); | |
test('it returns stubbed ip', () async { | |
final ipAddress = await MyIp().ipAddress; | |
expect(ipAddress, '192.168.0.1'); | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment