You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@usergrid.apache.org by sn...@apache.org on 2014/03/10 19:21:23 UTC

[09/50] [abbrv] git commit: Move SimpleService test class to correct package (not sure why this was not breaking everybody's build).

Move SimpleService test class to correct package (not sure why this was not breaking everybody's build).


Project: http://git-wip-us.apache.org/repos/asf/incubator-usergrid/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-usergrid/commit/06070831
Tree: http://git-wip-us.apache.org/repos/asf/incubator-usergrid/tree/06070831
Diff: http://git-wip-us.apache.org/repos/asf/incubator-usergrid/diff/06070831

Branch: refs/heads/two-dot-o
Commit: 0607083134c13eb0ae883cb520b8532e06548be8
Parents: 530a350
Author: Dave Johnson <sn...@gmail.com>
Authored: Sat Mar 1 14:39:25 2014 -0500
Committer: Dave Johnson <sn...@gmail.com>
Committed: Sat Mar 1 14:39:25 2014 -0500

----------------------------------------------------------------------
 .../usergrid/services/ServiceFactoryIT.java     |  2 +-
 .../usergrid/services/simple/SimpleService.java | 33 ++++++++++++++++++++
 .../java/org/usergrid/simple/SimpleService.java | 33 --------------------
 3 files changed, 34 insertions(+), 34 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/06070831/stack/services/src/test/java/org/apache/usergrid/services/ServiceFactoryIT.java
----------------------------------------------------------------------
diff --git a/stack/services/src/test/java/org/apache/usergrid/services/ServiceFactoryIT.java b/stack/services/src/test/java/org/apache/usergrid/services/ServiceFactoryIT.java
index 9781050..0ea0538 100644
--- a/stack/services/src/test/java/org/apache/usergrid/services/ServiceFactoryIT.java
+++ b/stack/services/src/test/java/org/apache/usergrid/services/ServiceFactoryIT.java
@@ -25,7 +25,7 @@ import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 import org.apache.usergrid.cassandra.Concurrent;
 
-import org.usergrid.simple.SimpleService;
+import org.apache.usergrid.services.simple.SimpleService;
 
 import static org.junit.Assert.assertEquals;
 import static org.junit.Assert.assertNotNull;

http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/06070831/stack/services/src/test/java/org/apache/usergrid/services/simple/SimpleService.java
----------------------------------------------------------------------
diff --git a/stack/services/src/test/java/org/apache/usergrid/services/simple/SimpleService.java b/stack/services/src/test/java/org/apache/usergrid/services/simple/SimpleService.java
new file mode 100644
index 0000000..630898f
--- /dev/null
+++ b/stack/services/src/test/java/org/apache/usergrid/services/simple/SimpleService.java
@@ -0,0 +1,33 @@
+/*
+ * 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.
+ */
+package org.apache.usergrid.services.simple;
+
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+import org.apache.usergrid.services.AbstractCollectionService;
+
+
+public class SimpleService extends AbstractCollectionService {
+
+    private static final Logger logger = LoggerFactory.getLogger( SimpleService.class );
+
+
+    public SimpleService() {
+        super();
+        logger.info( "/simple" );
+    }
+}

http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/06070831/stack/services/src/test/java/org/usergrid/simple/SimpleService.java
----------------------------------------------------------------------
diff --git a/stack/services/src/test/java/org/usergrid/simple/SimpleService.java b/stack/services/src/test/java/org/usergrid/simple/SimpleService.java
deleted file mode 100644
index a132bc3..0000000
--- a/stack/services/src/test/java/org/usergrid/simple/SimpleService.java
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * 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.
- */
-package org.usergrid.simple;
-
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-import org.apache.usergrid.services.AbstractCollectionService;
-
-
-public class SimpleService extends AbstractCollectionService {
-
-    private static final Logger logger = LoggerFactory.getLogger( SimpleService.class );
-
-
-    public SimpleService() {
-        super();
-        logger.info( "/simple" );
-    }
-}