}
@Test(dataProvider = "publicKey")
public void testKeyListCommand(String pubKey, String comment) {
connection.execute(new KeyAdd(pubKey), API_KEY);
KeyList keyListRequest = new KeyList();
List<Key> keyListResponse = connection.execute(keyListRequest, API_KEY);
Assert.assertTrue(keyIsPresent(comment, keyListResponse), comment + " should have been present.");
}