patsonluk commented on code in PR #909: URL: https://github.com/apache/solr/pull/909#discussion_r915363090
########## solr/core/src/test/org/apache/solr/cloud/overseer/ZkStateReaderTest.java: ########## @@ -29,35 +38,68 @@ import org.apache.solr.cloud.ZkTestServer; import org.apache.solr.common.cloud.ClusterState; import org.apache.solr.common.cloud.DocCollection; +import org.apache.solr.common.cloud.DocCollectionWatcher; import org.apache.solr.common.cloud.DocRouter; import org.apache.solr.common.cloud.SolrZkClient; import org.apache.solr.common.cloud.ZkStateReader; +import org.apache.solr.common.util.ExecutorUtil; +import org.apache.solr.common.util.SolrNamedThreadFactory; import org.apache.solr.common.util.TimeSource; import org.apache.solr.handler.admin.ConfigSetsHandler; import org.apache.solr.util.TimeOut; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; public class ZkStateReaderTest extends SolrTestCaseJ4 { - + private static final Logger log = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass()); private static final long TIMEOUT = 30; - public void testExternalCollectionWatchedNotWatched() throws Exception { + private static class TestFixture implements Closeable { Review Comment: Thanks! I tried using `@Before` and `@After` but it's a bit tricky as I wish to call `createTempDir` with different test name therefore we will need to pass some parameters to the @Before. I looked up and there's this https://stackoverflow.com/questions/26357751/passing-parameter-to-before-setup-in-junit-test but it seems a bit complicated for here. Is it okay if we keep the current structure? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org For additional commands, e-mail: issues-h...@solr.apache.org