*/
public class DefaultConfigurationTest extends TestCase {
public void testGetServerFromFlag() throws Exception {
// String configServer = "configServer";
String flagServer = "flagServer";
final DefaultConfiguration config = new DefaultConfiguration(new BasePaths(new File(".")));
assertEquals(flagServer, config.getServer(flagServer, -1, new NullPathPrefix()));
final ConcretePathPrefix prefix = new ConcretePathPrefix("jstd");
assertEquals(prefix.suffixServer(flagServer), config.getServer(flagServer, -1, prefix));
}