client = new SimpleClient("log4j.properties");
client.connect("localhost", PORT);
client.login("testUsername", "password");
SimpleClient altClient = new SimpleClient("log4j.properties");
altClient.connect("localhost", PORT);
altClient.login("testUsername", "password");
String[] characters = altClient.getCharacters();
assertEquals(0, characters.length);
} catch (Exception e) {