I wanted to run all tests within one package so I ran it like this ant clean test "-Dtests.class=org.apache.solr.search.facet.*"
The test run fails because the harness is trying to run DebugAgg as it's a public class while it's not really a test class. [junit4] Tests with failures [seed: EB7B560286FA14D0]: [junit4] - org.apache.solr.search.facet.DebugAgg.initializationError [junit4] - org.apache.solr.search.facet.DebugAgg.initializationError Is there a way to avoid this?
