SOLR-13518: extra assertNotNull info for SolrInfoBeanTest

This commit is contained in:
Christine Poerschke 2019-06-05 20:15:58 +01:00
parent 6b70bdb3c0
commit 757e4548c7
1 changed files with 3 additions and 3 deletions

View File

@ -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;