public void canListKey() throws DeltaCloudClientException {
String id = String.valueOf(System.currentTimeMillis());
DeltaCloudClient client = testSetup.getClient();
try {
Key createdKey = client.createKey(id);
Key listedKey = client.listKey(id);
assertEquals(createdKey.getId(), listedKey.getId());
} finally {
quietlyDeleteKey(id);
}
}