* A simple test that verifies that at least one of the connecion
* properties is being correctly assigned in the client factory.
*/
public void testServer() throws RepositoryException {
connector.login();
MockClientFactory clientFactory =
(MockClientFactory) connector.getClientFactory();
Map<String, Object> values = clientFactory.getValues();
assertTrue(values.toString(), values.containsKey("setServer"));
assertEquals(System.getProperty("connector.server"),
values.get("setServer"));
}