}
@Test
public void testGetArticlesByTag() throws Exception
{
Tag tag = saveTag();
for ( int i = 0; i < 30; i++ )
{
Article article = new Article();
article.setTag_1( tag.getId() );
articleService.saveArticle( article );
article = new Article();
article.setTag_2( tag.getId() );
articleService.saveArticle( article );
}
ArticlesRequest request = new ArticlesRequest( -1, 20 );
request.setTag( "google-app-engine" );