mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-05-28 14:19:38 +00:00
renamed test packages so they are aligned with main packages
This commit is contained in:
parent
6a8edd99af
commit
ddbe4b5c14
18 changed files with 31 additions and 31 deletions
|
@ -13,7 +13,7 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.springframework.samples.petclinic;
|
||||
package org.springframework.samples.petclinic.model;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
import static org.junit.Assert.assertNull;
|
|
@ -13,7 +13,7 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.springframework.samples.petclinic;
|
||||
package org.springframework.samples.petclinic.repository;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
import static org.junit.Assert.assertTrue;
|
|
@ -13,7 +13,7 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.springframework.samples.petclinic;
|
||||
package org.springframework.samples.petclinic.repository;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
import static org.junit.Assert.assertTrue;
|
|
@ -13,7 +13,7 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.springframework.samples.petclinic;
|
||||
package org.springframework.samples.petclinic.repository;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
|
|
@ -13,7 +13,7 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.springframework.samples.petclinic;
|
||||
package org.springframework.samples.petclinic.repository;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
|
|
@ -13,10 +13,10 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.springframework.samples.petclinic.jdbc;
|
||||
package org.springframework.samples.petclinic.repository.jdbc;
|
||||
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.samples.petclinic.AbstractOwnerRepositoryTests;
|
||||
import org.springframework.samples.petclinic.repository.AbstractOwnerRepositoryTests;
|
||||
import org.springframework.test.context.ActiveProfiles;
|
||||
import org.springframework.test.context.ContextConfiguration;
|
||||
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
|
|
@ -1,7 +1,7 @@
|
|||
package org.springframework.samples.petclinic.jdbc;
|
||||
package org.springframework.samples.petclinic.repository.jdbc;
|
||||
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.samples.petclinic.AbstractPetRepositoryTests;
|
||||
import org.springframework.samples.petclinic.repository.AbstractPetRepositoryTests;
|
||||
import org.springframework.test.context.ActiveProfiles;
|
||||
import org.springframework.test.context.ContextConfiguration;
|
||||
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
|
|
@ -1,7 +1,7 @@
|
|||
package org.springframework.samples.petclinic.jdbc;
|
||||
package org.springframework.samples.petclinic.repository.jdbc;
|
||||
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.samples.petclinic.AbstractVetRepositoryTests;
|
||||
import org.springframework.samples.petclinic.repository.AbstractVetRepositoryTests;
|
||||
import org.springframework.test.context.ActiveProfiles;
|
||||
import org.springframework.test.context.ContextConfiguration;
|
||||
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
|
|
@ -1,7 +1,7 @@
|
|||
package org.springframework.samples.petclinic.jdbc;
|
||||
package org.springframework.samples.petclinic.repository.jdbc;
|
||||
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.samples.petclinic.AbstractVisitRepositoryTests;
|
||||
import org.springframework.samples.petclinic.repository.AbstractVisitRepositoryTests;
|
||||
import org.springframework.test.context.ActiveProfiles;
|
||||
import org.springframework.test.context.ContextConfiguration;
|
||||
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
|
|
@ -1,8 +1,8 @@
|
|||
|
||||
package org.springframework.samples.petclinic.jpa;
|
||||
package org.springframework.samples.petclinic.repository.jpa;
|
||||
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.samples.petclinic.AbstractOwnerRepositoryTests;
|
||||
import org.springframework.samples.petclinic.repository.AbstractOwnerRepositoryTests;
|
||||
import org.springframework.test.context.ActiveProfiles;
|
||||
import org.springframework.test.context.ContextConfiguration;
|
||||
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
|
|
@ -1,7 +1,7 @@
|
|||
package org.springframework.samples.petclinic.jpa;
|
||||
package org.springframework.samples.petclinic.repository.jpa;
|
||||
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.samples.petclinic.AbstractPetRepositoryTests;
|
||||
import org.springframework.samples.petclinic.repository.AbstractPetRepositoryTests;
|
||||
import org.springframework.test.context.ActiveProfiles;
|
||||
import org.springframework.test.context.ContextConfiguration;
|
||||
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
|
|
@ -1,7 +1,7 @@
|
|||
package org.springframework.samples.petclinic.jpa;
|
||||
package org.springframework.samples.petclinic.repository.jpa;
|
||||
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.samples.petclinic.AbstractVetRepositoryTests;
|
||||
import org.springframework.samples.petclinic.repository.AbstractVetRepositoryTests;
|
||||
import org.springframework.test.context.ActiveProfiles;
|
||||
import org.springframework.test.context.ContextConfiguration;
|
||||
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
|
|
@ -1,7 +1,7 @@
|
|||
package org.springframework.samples.petclinic.jpa;
|
||||
package org.springframework.samples.petclinic.repository.jpa;
|
||||
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.samples.petclinic.AbstractVisitRepositoryTests;
|
||||
import org.springframework.samples.petclinic.repository.AbstractVisitRepositoryTests;
|
||||
import org.springframework.test.context.ActiveProfiles;
|
||||
import org.springframework.test.context.ContextConfiguration;
|
||||
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
|
|
@ -1,8 +1,8 @@
|
|||
|
||||
package org.springframework.samples.petclinic.springdatajpa;
|
||||
package org.springframework.samples.petclinic.repository.springdatajpa;
|
||||
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.samples.petclinic.AbstractOwnerRepositoryTests;
|
||||
import org.springframework.samples.petclinic.repository.AbstractOwnerRepositoryTests;
|
||||
import org.springframework.test.context.ActiveProfiles;
|
||||
import org.springframework.test.context.ContextConfiguration;
|
||||
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
|
|
@ -1,7 +1,7 @@
|
|||
package org.springframework.samples.petclinic.springdatajpa;
|
||||
package org.springframework.samples.petclinic.repository.springdatajpa;
|
||||
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.samples.petclinic.AbstractPetRepositoryTests;
|
||||
import org.springframework.samples.petclinic.repository.AbstractPetRepositoryTests;
|
||||
import org.springframework.test.context.ActiveProfiles;
|
||||
import org.springframework.test.context.ContextConfiguration;
|
||||
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
|
|
@ -1,7 +1,7 @@
|
|||
package org.springframework.samples.petclinic.springdatajpa;
|
||||
package org.springframework.samples.petclinic.repository.springdatajpa;
|
||||
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.samples.petclinic.AbstractVetRepositoryTests;
|
||||
import org.springframework.samples.petclinic.repository.AbstractVetRepositoryTests;
|
||||
import org.springframework.test.context.ActiveProfiles;
|
||||
import org.springframework.test.context.ContextConfiguration;
|
||||
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
|
|
@ -1,7 +1,7 @@
|
|||
package org.springframework.samples.petclinic.springdatajpa;
|
||||
package org.springframework.samples.petclinic.repository.springdatajpa;
|
||||
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.samples.petclinic.AbstractVisitRepositoryTests;
|
||||
import org.springframework.samples.petclinic.repository.AbstractVisitRepositoryTests;
|
||||
import org.springframework.test.context.ActiveProfiles;
|
||||
import org.springframework.test.context.ContextConfiguration;
|
||||
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
|
|
@ -1,8 +1,8 @@
|
|||
|
||||
package org.springframework.samples.petclinic.springdatajpa;
|
||||
package org.springframework.samples.petclinic.repository.springdatajpa;
|
||||
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.samples.petclinic.AbstractOwnerRepositoryTests;
|
||||
import org.springframework.samples.petclinic.repository.AbstractOwnerRepositoryTests;
|
||||
import org.springframework.test.context.ActiveProfiles;
|
||||
import org.springframework.test.context.ContextConfiguration;
|
||||
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
|
Loading…
Reference in a new issue