Github user kishoreg commented on a diff in the pull request:
https://github.com/apache/helix/pull/138#discussion_r171987319
--- Diff:
helix-core/src/test/java/org/apache/helix/TestListenerCallbackBatchMode.java ---
@@ -122,21 +131,45 @@ public void testNonBatchedListener() throws Exception
{
final Listener listener = new Listener();
addListeners(listener);
+ updateConfigs();
+ verifyNonbatchedListeners(listener);
+ removeListeners(listener);
+ System.out.println("END " + methodName + " at " + new
Date(System.currentTimeMillis()));
+ }
+
+ @Test (dependsOnMethods = {"testNonBatchedListener",
"testBatchedListener", "testMixedListener"})
+ public void testEnableBatchedListenerByJavaProperty() throws Exception {
+ String methodName = TestHelper.getTestMethodName();
+ System.out.println("START " + methodName + " at " + new
Date(System.currentTimeMillis()));
--- End diff --
avoid using sysout every where
---