DATAGRAPH-1221 - Cleanup test-package structure.

This commit is contained in:
Michael Simons
2019-05-06 12:16:33 +02:00
parent 72fa04d81d
commit 2b544b8f7a
9 changed files with 20 additions and 20 deletions

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.data.neo4j.transactions;
package org.springframework.data.neo4j.transaction;
import static org.junit.Assert.*;
@@ -27,9 +27,9 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.neo4j.test.Neo4jIntegrationTest;
import org.springframework.data.neo4j.transactions.service.ServiceA;
import org.springframework.data.neo4j.transactions.service.ServiceB;
import org.springframework.data.neo4j.transactions.service.WrapperService;
import org.springframework.data.neo4j.transaction.service.ServiceA;
import org.springframework.data.neo4j.transaction.service.ServiceB;
import org.springframework.data.neo4j.transaction.service.WrapperService;
import org.springframework.test.annotation.Rollback;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringRunner;
@@ -138,8 +138,8 @@ public class ExtendedTransactionsTests {
}
@Configuration
@Neo4jIntegrationTest(domainPackages = "org.springframework.data.neo4j.transactions.domain",
repositoryPackages = "org.springframework.data.neo4j.transactions.repo")
@ComponentScan("org.springframework.data.neo4j.transactions.service")
@Neo4jIntegrationTest(domainPackages = "org.springframework.data.neo4j.transaction.domain",
repositoryPackages = "org.springframework.data.neo4j.transaction.repo")
@ComponentScan("org.springframework.data.neo4j.transaction.service")
static class ApplicationConfig {}
}

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.data.neo4j.transactions;
package org.springframework.data.neo4j.transaction;
import org.junit.After;
import org.junit.Before;

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.data.neo4j.transactions;
package org.springframework.data.neo4j.transaction;
import static org.junit.Assert.*;

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.data.neo4j.transactions.domain;
package org.springframework.data.neo4j.transaction.domain;
import org.neo4j.ogm.annotation.Transient;

View File

@@ -13,12 +13,12 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.data.neo4j.transactions.repo;
package org.springframework.data.neo4j.transaction.repo;
import java.util.Collection;
import org.springframework.data.neo4j.repository.Neo4jRepository;
import org.springframework.data.neo4j.transactions.domain.User;
import org.springframework.data.neo4j.transaction.domain.User;
import org.springframework.stereotype.Repository;
/**

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.data.neo4j.transactions.service;
package org.springframework.data.neo4j.transaction.service;
import java.util.Collections;
import java.util.HashMap;

View File

@@ -13,11 +13,11 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.data.neo4j.transactions.service;
package org.springframework.data.neo4j.transaction.service;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.neo4j.transactions.domain.User;
import org.springframework.data.neo4j.transactions.repo.UserRepository;
import org.springframework.data.neo4j.transaction.domain.User;
import org.springframework.data.neo4j.transaction.repo.UserRepository;
import org.springframework.stereotype.Component;
import org.springframework.transaction.annotation.Transactional;

View File

@@ -13,13 +13,13 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.data.neo4j.transactions.service;
package org.springframework.data.neo4j.transaction.service;
import java.util.Collection;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.neo4j.transactions.domain.User;
import org.springframework.data.neo4j.transactions.repo.UserRepository;
import org.springframework.data.neo4j.transaction.domain.User;
import org.springframework.data.neo4j.transaction.repo.UserRepository;
import org.springframework.stereotype.Component;
import org.springframework.transaction.annotation.Transactional;

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.data.neo4j.transactions.service;
package org.springframework.data.neo4j.transaction.service;
import java.util.Map;