]> source.dussan.org Git - archiva.git/commitdiff
move to correct package
authorOlivier Lamy <olamy@apache.org>
Fri, 4 Jan 2013 19:00:59 +0000 (19:00 +0000)
committerOlivier Lamy <olamy@apache.org>
Fri, 4 Jan 2013 19:00:59 +0000 (19:00 +0000)
git-svn-id: https://svn.apache.org/repos/asf/archiva/redback/redback-core/trunk@1429037 13f79535-47bb-0310-9956-ffa450edef68

redback-common/redback-common-ldap/src/test/java/org/apache/archiva/redback/common/ldap/LdapUserMapperTest.java [deleted file]
redback-common/redback-common-ldap/src/test/java/org/apache/archiva/redback/common/ldap/user/LdapUserMapperTest.java [new file with mode: 0644]

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 (file)
index 8c29b41..0000000
+++ /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 (file)
index 0000000..1a59b81
--- /dev/null
@@ -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() );
+    }
+}