I'm attempting to use SolrJettyTestBase to test a simple app that pushes content to Solr.
I've subclassed SolrJettyTestBase, and added a test method (annotated with @test). However, my test method is never called. I see the following: SLF4J: Class path contains multiple SLF4J bindings. SLF4J: Found binding in [jar:file:/Users/upayavira/.m2/repository/org/slf4j/slf4j-log4j12/1.7.2/slf4j-log4j12-1.7.2.jar!/org/slf4j/impl/StaticLoggerBinder.class] SLF4J: Found binding in [jar:file:/Users/upayavira/.m2/repository/org/slf4j/slf4j-jdk14/1.6.4/slf4j-jdk14-1.6.4.jar!/org/slf4j/impl/StaticLoggerBinder.class] SLF4J: Found binding in [jar:file:/Users/upayavira/apache/lucene/solr/example/solr-webapp/webapp/WEB-INF/lib/slf4j-jdk14-1.6.4.jar!/org/slf4j/impl/StaticLoggerBinder.class] SLF4J: Found binding in [jar:file:/Users/upayavira/apache/lucene/solr/solrj/lib/slf4j-log4j12-1.6.6.jar!/org/slf4j/impl/StaticLoggerBinder.class] SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation. Test class requires enabled assertions, enable globally (-ea) or for Solr/Lucene subpackages only: com.odoko.ArgPostActionTest NOTE: test params are: codec=null, sim=null, locale=null, timezone=(null) NOTE: Mac OS X 10.8.2 x86_64/Oracle Corporation 1.7.0_17 (64-bit)/cpus=8,threads=1,free=85043008,total=96665600 NOTE: All tests run in this JVM: [ArgPostActionTest] NOTE: reproduce with: ant test -Dtestcase=ArgPostActionTest -Dtests.seed=73C46F7785759CEF -Dtests.file.encoding=MacRoman I'm sure I'm missing something obvious. Any ideas/suggestions as to what I need to do to make my test actually run?? Upayavira