manager.runQuery(searchFeed);
assertEquals(1, searchFeed.getArticlesCount());
// Setting the criteria which should not match
searchFeedQuery.setAndQuery(true);
ICriteria feedStarz = searchFeedQuery.addCriteria();
feedStarz.setProperty(FeedStarzProperty.INSTANCE);
feedStarz.setComparisonOperation(StringEqualsCO.INSTANCE);
feedStarz.setValue("5");
manager.queryUpdated(searchFeed);
assertEquals("None of articles meet the criteria.",
0, searchFeed.getArticlesCount());
}