cleanup work
This commit is contained in:
parent
aacc25a752
commit
1423907bf0
|
@ -1,4 +1,5 @@
|
|||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<groupId>com.baeldung</groupId>
|
||||
|
@ -160,10 +161,10 @@
|
|||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
|
||||
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
|
||||
|
||||
<org.springframework.version>4.3.4.RELEASE</org.springframework.version>
|
||||
|
||||
<org.springframework.data.version>1.8.6.RELEASE</org.springframework.data.version>
|
||||
|
@ -177,7 +178,7 @@
|
|||
<org.slf4j.version>1.7.21</org.slf4j.version>
|
||||
<logback.version>1.1.7</logback.version>
|
||||
<maven-compiler-plugin.version>3.6.0</maven-compiler-plugin.version>
|
||||
<maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version>
|
||||
<maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version>
|
||||
</properties>
|
||||
|
||||
</project>
|
||||
|
|
|
@ -33,7 +33,7 @@ import com.mongodb.gridfs.GridFSDBFile;
|
|||
|
||||
@ContextConfiguration("file:src/main/resources/mongoConfig.xml")
|
||||
@RunWith(SpringJUnit4ClassRunner.class)
|
||||
public class GridFSIntegrationTest {
|
||||
public class GridFSLiveTest {
|
||||
|
||||
private final Logger logger = LoggerFactory.getLogger(getClass());
|
||||
|
|
@ -25,7 +25,7 @@ import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
|
|||
|
||||
@RunWith(SpringJUnit4ClassRunner.class)
|
||||
@ContextConfiguration(classes = MongoConfig.class)
|
||||
public class DocumentQueryIntegrationTest {
|
||||
public class DocumentQueryLiveTest {
|
||||
|
||||
@Autowired
|
||||
private MongoTemplate mongoTemplate;
|
|
@ -28,7 +28,7 @@ import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
|
|||
|
||||
@RunWith(SpringJUnit4ClassRunner.class)
|
||||
@ContextConfiguration(classes = MongoConfig.class)
|
||||
public class MongoTemplateQueryIntegrationTest {
|
||||
public class MongoTemplateQueryLiveTest {
|
||||
|
||||
@Autowired
|
||||
private MongoTemplate mongoTemplate;
|
|
@ -7,7 +7,7 @@ import org.junit.Before;
|
|||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.data.mongodb.core.MongoOperations;
|
||||
|
||||
public class BaseQueryIntegrationTest {
|
||||
public class BaseQueryLiveTest {
|
||||
|
||||
@Autowired
|
||||
protected UserRepository userRepository;
|
|
@ -17,7 +17,7 @@ import com.mysema.query.types.Predicate;
|
|||
|
||||
@RunWith(SpringJUnit4ClassRunner.class)
|
||||
@ContextConfiguration(classes = MongoConfig.class)
|
||||
public class DSLQueryIntegrationTest extends BaseQueryIntegrationTest {
|
||||
public class DSLQueryLiveTest extends BaseQueryLiveTest {
|
||||
|
||||
@Test
|
||||
public void givenUsersExist_whenFindingUsersByName_thenUserAreFound() {
|
|
@ -14,7 +14,7 @@ import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
|
|||
|
||||
@RunWith(SpringJUnit4ClassRunner.class)
|
||||
@ContextConfiguration(classes = MongoConfig.class)
|
||||
public class JSONQueryIntegrationTest extends BaseQueryIntegrationTest {
|
||||
public class JSONQueryLiveTest extends BaseQueryLiveTest {
|
||||
|
||||
@Test
|
||||
public void givenUsersExist_whenFindingUsersByName_thenUsersAreFound() {
|
|
@ -14,7 +14,7 @@ import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
|
|||
|
||||
@RunWith(SpringJUnit4ClassRunner.class)
|
||||
@ContextConfiguration(classes = MongoConfig.class)
|
||||
public class QueryMethodsIntegrationTest extends BaseQueryIntegrationTest {
|
||||
public class QueryMethodsLiveTest extends BaseQueryLiveTest {
|
||||
|
||||
@Test
|
||||
public void givenUsersExist_whenFindingUsersByName_thenUsersAreFound() {
|
|
@ -24,7 +24,7 @@ import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
|
|||
|
||||
@RunWith(SpringJUnit4ClassRunner.class)
|
||||
@ContextConfiguration(classes = MongoConfig.class)
|
||||
public class UserRepositoryIntegrationTest {
|
||||
public class UserRepositoryLiveTest {
|
||||
|
||||
@Autowired
|
||||
private UserRepository userRepository;
|
|
@ -323,9 +323,9 @@
|
|||
</plugins>
|
||||
|
||||
</build>
|
||||
</profile>
|
||||
</profile>
|
||||
</profiles>
|
||||
|
||||
|
||||
<properties>
|
||||
<!-- Spring -->
|
||||
<org.springframework.version>4.3.4.RELEASE</org.springframework.version>
|
||||
|
|
Loading…
Reference in New Issue