You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@continuum.apache.org by ri...@apache.org on 2006/12/28 07:31:32 UTC

svn commit: r490668 - /maven/continuum/branches/key-based-refactor/continuum-store/src/test/java/org/apache/maven/continuum/store/

Author: rinku
Date: Wed Dec 27 22:31:32 2006
New Revision: 490668

URL: http://svn.apache.org/viewvc?view=rev&rev=490668
Log:
o  Aligned store TestCase names.

Added:
    maven/continuum/branches/key-based-refactor/continuum-store/src/test/java/org/apache/maven/continuum/store/AbstractJdoStoreTestCase.java
      - copied, changed from r490663, maven/continuum/branches/key-based-refactor/continuum-store/src/test/java/org/apache/maven/continuum/store/AbstractRefactoredContinuumStoreTestCase.java
    maven/continuum/branches/key-based-refactor/continuum-store/src/test/java/org/apache/maven/continuum/store/JdoProjectStoreTestCase.java   (with props)
Removed:
    maven/continuum/branches/key-based-refactor/continuum-store/src/test/java/org/apache/maven/continuum/store/AbstractRefactoredContinuumStoreTestCase.java
    maven/continuum/branches/key-based-refactor/continuum-store/src/test/java/org/apache/maven/continuum/store/RefactoredContinuumStoreTestCase.java

Copied: maven/continuum/branches/key-based-refactor/continuum-store/src/test/java/org/apache/maven/continuum/store/AbstractJdoStoreTestCase.java (from r490663, maven/continuum/branches/key-based-refactor/continuum-store/src/test/java/org/apache/maven/continuum/store/AbstractRefactoredContinuumStoreTestCase.java)
URL: http://svn.apache.org/viewvc/maven/continuum/branches/key-based-refactor/continuum-store/src/test/java/org/apache/maven/continuum/store/AbstractJdoStoreTestCase.java?view=diff&rev=490668&p1=maven/continuum/branches/key-based-refactor/continuum-store/src/test/java/org/apache/maven/continuum/store/AbstractRefactoredContinuumStoreTestCase.java&r1=490663&p2=maven/continuum/branches/key-based-refactor/continuum-store/src/test/java/org/apache/maven/continuum/store/AbstractJdoStoreTestCase.java&r2=490668
==============================================================================
--- maven/continuum/branches/key-based-refactor/continuum-store/src/test/java/org/apache/maven/continuum/store/AbstractRefactoredContinuumStoreTestCase.java (original)
+++ maven/continuum/branches/key-based-refactor/continuum-store/src/test/java/org/apache/maven/continuum/store/AbstractJdoStoreTestCase.java Wed Dec 27 22:31:32 2006
@@ -24,7 +24,7 @@
  * @author <a href='mailto:rahul.thakur.xdev@gmail.com'>Rahul Thakur</a>
  * 
  */
-public class AbstractRefactoredContinuumStoreTestCase extends PlexusTestCase
+public class AbstractJdoStoreTestCase extends PlexusTestCase
 {
     protected ProjectStore store;
 

Added: maven/continuum/branches/key-based-refactor/continuum-store/src/test/java/org/apache/maven/continuum/store/JdoProjectStoreTestCase.java
URL: http://svn.apache.org/viewvc/maven/continuum/branches/key-based-refactor/continuum-store/src/test/java/org/apache/maven/continuum/store/JdoProjectStoreTestCase.java?view=auto&rev=490668
==============================================================================
--- maven/continuum/branches/key-based-refactor/continuum-store/src/test/java/org/apache/maven/continuum/store/JdoProjectStoreTestCase.java (added)
+++ maven/continuum/branches/key-based-refactor/continuum-store/src/test/java/org/apache/maven/continuum/store/JdoProjectStoreTestCase.java Wed Dec 27 22:31:32 2006
@@ -0,0 +1,24 @@
+/**
+ * 
+ */
+package org.apache.maven.continuum.store;
+
+/**
+ * @author <a href='mailto:rahul.thakur.xdev@gmail.com'>Rahul Thakur</a>
+ * 
+ */
+public class JdoProjectStoreTestCase extends AbstractJdoStoreTestCase
+{
+
+    protected void setUp() throws Exception
+    {
+        super.setUp();
+        createBuildDatabase();
+    }
+
+    public void testBasic()
+    {
+        // TODO: do something
+    }
+
+}

Propchange: maven/continuum/branches/key-based-refactor/continuum-store/src/test/java/org/apache/maven/continuum/store/JdoProjectStoreTestCase.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/continuum/branches/key-based-refactor/continuum-store/src/test/java/org/apache/maven/continuum/store/JdoProjectStoreTestCase.java
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"