From 7052adfc4fd28ffc8451a7cc694ec3199c6d46e9 Mon Sep 17 00:00:00 2001 From: Jesse McConnell Date: Mon, 16 Apr 2007 17:05:46 +0000 Subject: [PATCH] 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 --- .../src/main/mdo/archiva-base.xml | 2 +- .../archiva/model/ArchivaArtifactTest.java | 47 +++++++++++++++++++ 2 files changed, 48 insertions(+), 1 deletion(-) create mode 100644 archiva-base/archiva-model/src/test/java/org/apache/maven/archiva/model/ArchivaArtifactTest.java 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); } ]]> 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 Joakim Erdfelt + * @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() ); + } + +} -- 2.39.5