]> source.dussan.org Git - archiva.git/commitdiff
fixing a bug in the model with the isProcessed
authorJesse McConnell <jmcconnell@apache.org>
Mon, 16 Apr 2007 17:05:46 +0000 (17:05 +0000)
committerJesse McConnell <jmcconnell@apache.org>
Mon, 16 Apr 2007 17:05:46 +0000 (17:05 +0000)
git-svn-id: https://svn.apache.org/repos/asf/maven/archiva/branches/archiva-jpox-database-refactor@529326 13f79535-47bb-0310-9956-ffa450edef68

archiva-base/archiva-model/src/main/mdo/archiva-base.xml
archiva-base/archiva-model/src/test/java/org/apache/maven/archiva/model/ArchivaArtifactTest.java [new file with mode: 0644]

index 6343dc764b87a1f1ac9bf1e36be427b86942d5c1..39ad54774af9b96119cf2ceabf5761bd53695f7e 100644 (file)
      */
     public boolean isProcessed()
     {
-        return (whenProcessed == null);
+        return !(whenProcessed == null);
     }          
           ]]></code>
         </codeSegment>
diff --git a/archiva-base/archiva-model/src/test/java/org/apache/maven/archiva/model/ArchivaArtifactTest.java b/archiva-base/archiva-model/src/test/java/org/apache/maven/archiva/model/ArchivaArtifactTest.java
new file mode 100644 (file)
index 0000000..d5f296b
--- /dev/null
@@ -0,0 +1,47 @@
+package org.apache.maven.archiva.model;
+
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+import java.util.Date;
+
+import org.codehaus.plexus.PlexusTestCase;
+
+/**
+ * ArchivaModelClonerTest 
+ *
+ * @author <a href="mailto:joakim@erdfelt.com">Joakim Erdfelt</a>
+ * @version $Id: ArchivaModelClonerTest.java 525951 2007-04-05 20:11:19Z joakime $
+ */
+public class ArchivaArtifactTest
+    extends PlexusTestCase
+{
+    public void testArtifactModelProcessed()
+    {
+        ArchivaArtifactModel model = new ArchivaArtifactModel();
+        
+        assertNull( "whenProcessed", model.getWhenProcessed() );
+        assertFalse( "isProcessed", model.isProcessed() );
+        
+        model.setWhenProcessed( new Date() );
+        
+        assertTrue( "isProcessed", model.isProcessed() );
+    }
+    
+}