}
public void testCreatedItemAddOne() throws MalformedURLException {
ChannelIF channel = prepare();
ItemIF firstItem = (ItemIF) channel.getItems().iterator().next();
channel.removeItem(firstItem);
assertEquals(7, channel.getItems().size());
builder.createItem(channel, "another one", "9", new URL("http://9.net/"));
assertEquals(8, channel.getItems().size());
Iterator it = channel.getItems().iterator();
int idx = 2;