null);
asset.updateSubject( "testMetaDataSearch" );
asset.updateExternalSource( "numberwang");
asset.checkin( "" );
QueryPageRequest request = new QueryPageRequest( "asset*",
false,
0,
PAGE_SIZE );
RepositoryAssetService repositoryAssetService = new RepositoryAssetService();
repositoryAssetService.setRulesRepository(impl.getRulesRepository());
PageResponse<QueryPageRow> response = repositoryAssetService.quickFindAsset( request );
assertNotNull( response );
assertNotNull( response.getPageRowList() );
assertEquals( 0,
response.getStartRowIndex() );
assertEquals( PAGE_SIZE,
response.getPageRowList().size() );
assertEquals( false,
response.isTotalRowSizeExact());
assertFalse( response.isLastPage() );
request.setStartRowIndex( PAGE_SIZE );
response = repositoryAssetService.quickFindAsset( request );
assertNotNull( response );
assertNotNull( response.getPageRowList() );
assertEquals( PAGE_SIZE,