public void test_providedNameServer() {
TestCorbaHost.setCorbaHost(new TnsDefaultCorbaHost());
try {
// just make sure we can obtain and use the reference with success
Node node = NodeFactory.getInstance().createNode("ScenarioFive.composite", getClass().getClassLoader()).start();
ScenarioFive scenarioFive =
node.getService(ScenarioFiveComponent.class, "ScenarioFive").getScenarioFive();
scenarioFive.doNothing();
node.stop();
} catch (Exception e) {
e.printStackTrace();
fail();
}