private INews createNews(IFeed feed) {
INews news = fTypesFactory.createNews(null, feed, createDate());
IAttachment attachment = fTypesFactory.createAttachment(null, news);
attachment.setLink(createURI("http://attachmenturi.com"));
ICategory category = fTypesFactory.createCategory(null, news);
category.setName("Category name #1");
news.setAuthor(createPersonMary(news));
news.setBase(createURI("http://www.someuri.com"));
news.setComments("One comment");
news.setState(State.DELETED);
news.setDescription("News description");