You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by kl...@apache.org on 2016/03/11 22:08:44 UTC

[2/2] incubator-geode git commit: Remove comments about case methods which only applies to hydra dunit

Remove comments about case methods which only applies to hydra dunit


Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/2fd9cc68
Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/2fd9cc68
Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/2fd9cc68

Branch: refs/heads/feature/GEODE-1050
Commit: 2fd9cc687ceac3a99fbab25fccd6cfc85725a43e
Parents: e7c3874
Author: Kirk Lund <kl...@apache.org>
Authored: Fri Mar 11 13:08:18 2016 -0800
Committer: Kirk Lund <kl...@apache.org>
Committed: Fri Mar 11 13:08:18 2016 -0800

----------------------------------------------------------------------
 .../com/gemstone/gemfire/test/dunit/DistributedTestCase.java  | 7 -------
 .../test/dunit/internal/JUnit3DistributedTestCase.java        | 7 -------
 2 files changed, 14 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/2fd9cc68/geode-core/src/test/java/com/gemstone/gemfire/test/dunit/DistributedTestCase.java
----------------------------------------------------------------------
diff --git a/geode-core/src/test/java/com/gemstone/gemfire/test/dunit/DistributedTestCase.java b/geode-core/src/test/java/com/gemstone/gemfire/test/dunit/DistributedTestCase.java
index 2a5adce..b657e1e 100755
--- a/geode-core/src/test/java/com/gemstone/gemfire/test/dunit/DistributedTestCase.java
+++ b/geode-core/src/test/java/com/gemstone/gemfire/test/dunit/DistributedTestCase.java
@@ -64,13 +64,6 @@ import junit.framework.TestCase;
 
 /**
  * This class is the superclass of all distributed unit tests.
- * 
- * tests/hydra/JUnitTestTask is the main DUnit driver. It supports two 
- * additional public static methods if they are defined in the test case:
- * 
- * public static void caseSetUp() -- comparable to JUnit's BeforeClass annotation
- * 
- * public static void caseTearDown() -- comparable to JUnit's AfterClass annotation
  *
  * @author David Whitlock
  */

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/2fd9cc68/geode-core/src/test/java/com/gemstone/gemfire/test/dunit/internal/JUnit3DistributedTestCase.java
----------------------------------------------------------------------
diff --git a/geode-core/src/test/java/com/gemstone/gemfire/test/dunit/internal/JUnit3DistributedTestCase.java b/geode-core/src/test/java/com/gemstone/gemfire/test/dunit/internal/JUnit3DistributedTestCase.java
index 92d48ce..ecdbb5f 100755
--- a/geode-core/src/test/java/com/gemstone/gemfire/test/dunit/internal/JUnit3DistributedTestCase.java
+++ b/geode-core/src/test/java/com/gemstone/gemfire/test/dunit/internal/JUnit3DistributedTestCase.java
@@ -30,13 +30,6 @@ import org.junit.experimental.categories.Category;
 
 /**
  * This class is the superclass of all distributed tests using JUnit 3.
- *
- * tests/hydra/JUnitTestTask is the main DUnit driver. It supports two
- * additional public static methods if they are defined in the test case:
- *
- * public static void caseSetUp() -- comparable to JUnit's BeforeClass annotation // TODO: are these invoked by standalone dunit?
- *
- * public static void caseTearDown() -- comparable to JUnit's AfterClass annotation
  */
 @Category(DistributedTest.class)
 public abstract class JUnit3DistributedTestCase extends TestCase implements DistributedTestFixture, Serializable {