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

Change-Id: Iae5d4d4b48c15873ff77c2fd6be9d1d2fcaea5a2
This commit is contained in:
Jonathan Hart 2015-10-26 18:10:56 -07:00
parent 92511f22a0
commit 4bb4b056b8
3 changed files with 11 additions and 10 deletions

View File

@ -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>

View File

@ -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);
}
}
}
}

View 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);
}
}
}
}