From 57d92c8cf5cd063c5cc7b07b0b95a87c0eac4bea Mon Sep 17 00:00:00 2001 From: Brett Porter Date: Sat, 14 Jun 2008 04:57:12 +0000 Subject: [PATCH] set line ending git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@667744 13f79535-47bb-0310-9956-ffa450edef68 --- .../configuration/LegacyArtifactPathTest.java | 112 +++++++++--------- 1 file changed, 56 insertions(+), 56 deletions(-) diff --git a/archiva-modules/archiva-base/archiva-configuration/src/test/java/org/apache/maven/archiva/configuration/LegacyArtifactPathTest.java b/archiva-modules/archiva-base/archiva-configuration/src/test/java/org/apache/maven/archiva/configuration/LegacyArtifactPathTest.java index 528804a0a..dfeba0527 100644 --- a/archiva-modules/archiva-base/archiva-configuration/src/test/java/org/apache/maven/archiva/configuration/LegacyArtifactPathTest.java +++ b/archiva-modules/archiva-base/archiva-configuration/src/test/java/org/apache/maven/archiva/configuration/LegacyArtifactPathTest.java @@ -1,56 +1,56 @@ -package org.apache.maven.archiva.configuration; - -/* - * 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 junit.framework.TestCase; - -/** - * Test the generated LegacyArtifactPath class from Modello. This is primarily to test the hand coded methods. - * @since 1.1 - */ -public class LegacyArtifactPathTest - extends TestCase -{ - - private LegacyArtifactPath legacyArtifactPath = new LegacyArtifactPath(); - - public void testLegacyArtifactPathWithClassifierResolution() - { - legacyArtifactPath.setArtifact( "groupId:artifactId:version:classifier:type" ); - - assertEquals( "groupId", legacyArtifactPath.getGroupId() ); - assertEquals( "artifactId", legacyArtifactPath.getArtifactId() ); - assertEquals( "version", legacyArtifactPath.getVersion() ); - assertEquals( "classifier", legacyArtifactPath.getClassifier() ); - assertEquals( "type", legacyArtifactPath.getType() ); - } - - - public void testLegacyArtifactPathWithoutClassifierResolution() - { - legacyArtifactPath.setArtifact( "groupId:artifactId:version::type" ); - - assertEquals( "groupId", legacyArtifactPath.getGroupId() ); - assertEquals( "artifactId", legacyArtifactPath.getArtifactId() ); - assertEquals( "version", legacyArtifactPath.getVersion() ); - assertNull( legacyArtifactPath.getClassifier() ); - assertEquals( "type", legacyArtifactPath.getType() ); - } -} +package org.apache.maven.archiva.configuration; + +/* + * 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 junit.framework.TestCase; + +/** + * Test the generated LegacyArtifactPath class from Modello. This is primarily to test the hand coded methods. + * @since 1.1 + */ +public class LegacyArtifactPathTest + extends TestCase +{ + + private LegacyArtifactPath legacyArtifactPath = new LegacyArtifactPath(); + + public void testLegacyArtifactPathWithClassifierResolution() + { + legacyArtifactPath.setArtifact( "groupId:artifactId:version:classifier:type" ); + + assertEquals( "groupId", legacyArtifactPath.getGroupId() ); + assertEquals( "artifactId", legacyArtifactPath.getArtifactId() ); + assertEquals( "version", legacyArtifactPath.getVersion() ); + assertEquals( "classifier", legacyArtifactPath.getClassifier() ); + assertEquals( "type", legacyArtifactPath.getType() ); + } + + + public void testLegacyArtifactPathWithoutClassifierResolution() + { + legacyArtifactPath.setArtifact( "groupId:artifactId:version::type" ); + + assertEquals( "groupId", legacyArtifactPath.getGroupId() ); + assertEquals( "artifactId", legacyArtifactPath.getArtifactId() ); + assertEquals( "version", legacyArtifactPath.getVersion() ); + assertNull( legacyArtifactPath.getClassifier() ); + assertEquals( "type", legacyArtifactPath.getType() ); + } +} -- 2.39.5