Jonathan Hart

Moved persistence tests to correct directory so they are not part of runtime bundle

Change-Id: Iae5d4d4b48c15873ff77c2fd6be9d1d2fcaea5a2
......@@ -46,20 +46,21 @@
<dependencies>
<dependency>
<!--<dependency>
<groupId>org.onosproject</groupId>
<artifactId>onos-api</artifactId>
</dependency>-->
<dependency>
<groupId>org.onosproject</groupId>
<artifactId>onos-api</artifactId>
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mapdb</groupId>
<artifactId>mapdb</artifactId>
<version>1.0.8</version>
</dependency>
<dependency>
<groupId>org.junit</groupId>
<artifactId>com.springsource.org.junit</artifactId>
<version>4.11.0</version>
</dependency>
</dependencies>
</project>
......
......@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.onosproject.persistence.impl.test;
package test;
import com.google.common.collect.Maps;
import org.junit.After;
......@@ -242,4 +242,4 @@ public class PersistentMapTest {
map.put(i, i);
}
}
}
\ No newline at end of file
}
......
......@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.onosproject.persistence.impl.test;
package test;
import com.google.common.collect.Sets;
import org.junit.After;
......@@ -271,4 +271,4 @@ public class PersistentSetTest {
set.add(i);
}
}
}
\ No newline at end of file
}
......