mirror of https://github.com/apache/lucene.git
SOLR-13518: extra assertNotNull info for SolrInfoBeanTest
This commit is contained in:
parent
6b70bdb3c0
commit
757e4548c7
|
@ -69,9 +69,9 @@ public class SolrInfoBeanTest extends SolrTestCaseJ4
|
|||
}
|
||||
|
||||
//System.out.println( info.getClass() );
|
||||
assertNotNull( info.getName() );
|
||||
assertNotNull( info.getDescription() );
|
||||
assertNotNull( info.getCategory() );
|
||||
assertNotNull( info.getClass().getCanonicalName(), info.getName() );
|
||||
assertNotNull( info.getClass().getCanonicalName(), info.getDescription() );
|
||||
assertNotNull( info.getClass().getCanonicalName(), info.getCategory() );
|
||||
|
||||
if( info instanceof LRUCache ) {
|
||||
continue;
|
||||
|
|
Loading…
Reference in New Issue