summaryrefslogtreecommitdiffstats
path: root/archiva-base/archiva-model
diff options
context:
space:
mode:
authorJesse McConnell <jmcconnell@apache.org>2007-04-16 17:05:46 +0000
committerJesse McConnell <jmcconnell@apache.org>2007-04-16 17:05:46 +0000
commit7052adfc4fd28ffc8451a7cc694ec3199c6d46e9 (patch)
treed812eb3d049b6e59a9580a9610e845eeb3c69e60 /archiva-base/archiva-model
parent86d625ac02a61a093f801999ffc2339ffafa0d36 (diff)
downloadarchiva-7052adfc4fd28ffc8451a7cc694ec3199c6d46e9.tar.gz
archiva-7052adfc4fd28ffc8451a7cc694ec3199c6d46e9.zip
fixing a bug in the model with the isProcessed
git-svn-id: https://svn.apache.org/repos/asf/maven/archiva/branches/archiva-jpox-database-refactor@529326 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'archiva-base/archiva-model')
-rw-r--r--archiva-base/archiva-model/src/main/mdo/archiva-base.xml2
-rw-r--r--archiva-base/archiva-model/src/test/java/org/apache/maven/archiva/model/ArchivaArtifactTest.java47
2 files changed, 48 insertions, 1 deletions
diff --git a/archiva-base/archiva-model/src/main/mdo/archiva-base.xml b/archiva-base/archiva-model/src/main/mdo/archiva-base.xml
index 6343dc764..39ad54774 100644
--- a/archiva-base/archiva-model/src/main/mdo/archiva-base.xml
+++ b/archiva-base/archiva-model/src/main/mdo/archiva-base.xml
@@ -358,7 +358,7 @@
*/
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
index 000000000..d5f296b17
--- /dev/null
+++ b/archiva-base/archiva-model/src/test/java/org/apache/maven/archiva/model/ArchivaArtifactTest.java
@@ -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() );
+ }
+
+}