}
}
private List<RemoteConfiguration> someRemoteConfigs() throws IOException {
List<RemoteConfiguration> remoteConfigs = new ArrayList<RemoteConfiguration>();
remoteConfigs.add(new RemoteConfiguration(new URL("http://www.example.com"), new DummyRemoteConfigurationSource("http://www.example.com") {
public String browserFileNames() {
return "firefox.exe,mybrowser.exe";
}
public String osString() {
return PlatformType.LINUX.getDisplayName();
}
}));
remoteConfigs.add(new RemoteConfiguration(new URL("http://www.example.net"), new DummyRemoteConfigurationSource("http://www.example.com") {
public String browserFileNames() {
return "iexplore.exe,opera9.exe,xbrowser.exe";
}
public String osString() {
return PlatformType.WINDOWS.getDisplayName();
}
}));
remoteConfigs.add(new RemoteConfiguration(new URL("http://www.example.org"), new DummyRemoteConfigurationSource("http://www.example.com") {
public String browserFileNames() {
return "browser0.exe";
}
public String osString() {