use of com.oracle.bedrock.runtime.remote.options.Deployer in project oracle-bedrock by coherence-community.
the class PowerShellHttpDeployerTest method shouldFindInOptions.
@Test
public void shouldFindInOptions() throws Exception {
Deployer deployer = new PowerShellHttpDeployer();
OptionsByType optionsByType = OptionsByType.of(deployer);
assertThat(optionsByType.get(Deployer.class), is(sameInstance(deployer)));
}
use of com.oracle.bedrock.runtime.remote.options.Deployer in project oracle-bedrock by coherence-community.
the class CurlHttpDeployerTest method shouldFindInOptions.
@Test
public void shouldFindInOptions() throws Exception {
Deployer deployer = new CurlHttpDeployer();
OptionsByType optionsByType = OptionsByType.of(deployer);
assertThat(optionsByType.get(Deployer.class), is(sameInstance(deployer)));
}
Aggregations