List of usage examples for org.apache.solr.search QParserPlugin standardPlugins
Map standardPlugins
To view the source code for org.apache.solr.search QParserPlugin standardPlugins.
Click Source Link
From source file:org.tallison.solr.search.QueryEqualityTest.java
License:Apache License
/** @see #testParserCoverage */ @AfterClass/*from w ww.ja v a 2 s .c om*/ public static void afterClassParserCoverageTest() { if (!doAssertParserCoverage) return; for (String name : QParserPlugin.standardPlugins.keySet()) { assertTrue("testParserCoverage was run w/o any other method explicitly testing qparser: " + name, qParsersTested.contains(name)); } for (final String name : ValueSourceParser.standardValueSourceParsers.keySet()) { assertTrue("testParserCoverage was run w/o any other method explicitly testing val parser: " + name, valParsersTested.contains(name)); } }