DATAGRAPH-1221 - Cleanup test-package structure.
This commit is contained in:
@@ -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 {}
|
||||
}
|
||||
@@ -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;
|
||||
@@ -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.*;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
/**
|
||||
@@ -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;
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user