//because Google blogger service has limitation on new posts allowed everyday/every hour?
//System.out.println("testClientDelete");
//We create a new post, and then delete it
Entry newEntry = new Entry();
newEntry.setTitle(new PlainTextConstruct("blogEntryShouldNotApear"));
newEntry.setContent(new PlainTextConstruct("contentByBloggerShouldNotAppear"));
Entry postedEntry = testService.clientPost(newEntry);
Thread.sleep(Constants.SLEEP_INTERVAL);
int idStartPosition = postedEntry.getId().lastIndexOf("-");
String postedEntryID = postedEntry.getId().substring(idStartPosition+1);
//System.out.println("postedEntryID: " + postedEntryID );