useIfRunningOnDevice static method
Conditionally sets goldenFileComparator to VmServiceProxyGoldenFileComparator.
If running on a non-mobile non-web platform (i.e. desktop), this method has no effect.
Implementation
static void useIfRunningOnDevice() {
if (_isRunningOnHost) {
return;
}
_assertNotRunningOnFuchsia();
goldenFileComparator = _kInstance;
}