From: Olivier Lamy Date: Fri, 4 Jan 2013 19:00:59 +0000 (+0000) Subject: move to correct package X-Git-Tag: redback-2.1~149 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=e373179e34f73e5353db6d0a4da91701642021d1;p=archiva.git move to correct package git-svn-id: https://svn.apache.org/repos/asf/archiva/redback/redback-core/trunk@1429037 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/redback-common/redback-common-ldap/src/test/java/org/apache/archiva/redback/common/ldap/LdapUserMapperTest.java b/redback-common/redback-common-ldap/src/test/java/org/apache/archiva/redback/common/ldap/LdapUserMapperTest.java deleted file mode 100644 index 8c29b41fc..000000000 --- a/redback-common/redback-common-ldap/src/test/java/org/apache/archiva/redback/common/ldap/LdapUserMapperTest.java +++ /dev/null @@ -1,45 +0,0 @@ -package org.apache.archiva.redback.common.ldap; - -/* - * 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; -import org.apache.archiva.redback.common.ldap.user.LdapUserMapper; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; - -import javax.inject.Inject; -import javax.inject.Named; - -@RunWith( SpringJUnit4ClassRunner.class ) -@ContextConfiguration( locations = { "classpath*:/META-INF/spring-context.xml", "classpath:/spring-context.xml" } ) -public class LdapUserMapperTest - extends TestCase -{ - @Inject @Named(value = "userMapper#ldap") - LdapUserMapper mapper; - - @Test - public void testConfiguration() - { - assertEquals( "o=People,dc=codehaus,dc=org", mapper.getUserBaseDn() ); - } -} diff --git a/redback-common/redback-common-ldap/src/test/java/org/apache/archiva/redback/common/ldap/user/LdapUserMapperTest.java b/redback-common/redback-common-ldap/src/test/java/org/apache/archiva/redback/common/ldap/user/LdapUserMapperTest.java new file mode 100644 index 000000000..1a59b81e9 --- /dev/null +++ b/redback-common/redback-common-ldap/src/test/java/org/apache/archiva/redback/common/ldap/user/LdapUserMapperTest.java @@ -0,0 +1,45 @@ +package org.apache.archiva.redback.common.ldap.user; + +/* + * 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; +import org.apache.archiva.redback.common.ldap.user.LdapUserMapper; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.springframework.test.context.ContextConfiguration; +import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; + +import javax.inject.Inject; +import javax.inject.Named; + +@RunWith( SpringJUnit4ClassRunner.class ) +@ContextConfiguration( locations = { "classpath*:/META-INF/spring-context.xml", "classpath:/spring-context.xml" } ) +public class LdapUserMapperTest + extends TestCase +{ + @Inject @Named(value = "userMapper#ldap") + LdapUserMapper mapper; + + @Test + public void testConfiguration() + { + assertEquals( "o=People,dc=codehaus,dc=org", mapper.getUserBaseDn() ); + } +}