Fix test names (#1853)

* upgrade to spring boot 1.5.2

* add full update to REST API

* modify ratings controller

* upgrade herold

* fix integration test

* fix integration test

* minor fix

* fix integration test

* fix integration test

* minor cleanup

* minor cleanup

* remove log4j properties

* use standard logbook.xml

* remove log4j dependencies

* remove commons-logging

* merge

* fix conflict

* exclude commons-logging dependency

* cleanup

* minor fix

* minor fix

* fix dependency issues

* Revert "fix dependency issues"

This reverts commit 83bf1f9fd2.

* fix dependency issues

* minor fix

* minor fix

* minor fix

* cleanup generated files

* fix commons-logging issue

* add parent to pom

* cleanup parent dependencies

* cleanup pom

* cleanup pom

* add missing parent

* fix logging issue

* fix test names
This commit is contained in:
Doha2012
2017-05-15 18:35:14 +02:00
committed by Eugen
parent 5a58aacb8f
commit 48cd6f876f
369 changed files with 405 additions and 405 deletions

View File

@@ -15,7 +15,7 @@ import static org.assertj.core.api.Assertions.assertThat;
* @author Alex Theedom www.baeldung.com
* @version 1.0
*/
public class JacksonInjectTest {
public class JacksonInjectUnitTest {
@Test
public void whenDeserializingUsingJacksonInject_thenCorrect() throws IOException {

View File

@@ -14,7 +14,7 @@ import static org.assertj.core.api.Assertions.assertThat;
* @author Alex Theedom www.baeldung.com
* @version 1.0
*/
public class JsonAnySetterTest {
public class JsonAnySetterUnitTest {
@Test
public void whenDeserializingUsingJsonAnySetter_thenCorrect() throws IOException {

View File

@@ -14,7 +14,7 @@ import static org.assertj.core.api.Assertions.assertThat;
* @author Alex Theedom www.baeldung.com
* @version 1.0
*/
public class JsonCreatorTest {
public class JsonCreatorUnitTest {
@Test
public void whenDeserializingUsingJsonCreator_thenCorrect() throws IOException {

View File

@@ -15,7 +15,7 @@ import static org.assertj.core.api.Assertions.assertThat;
* @author Alex Theedom www.baeldung.com
* @version 1.0
*/
public class JsonDeserializeTest {
public class JsonDeserializeUnitTest {
@Test
public void whenDeserializingUsingJsonDeserialize_thenCorrect() throws IOException {

View File

@@ -14,7 +14,7 @@ import static org.assertj.core.api.Assertions.assertThat;
* @author Alex Theedom www.baeldung.com
* @version 1.0
*/
public class JsonSetterTest {
public class JsonSetterUnitTest {
@Test
public void whenDeserializingUsingJsonSetter_thenCorrect() throws IOException {

View File

@@ -16,7 +16,7 @@ import static org.assertj.core.api.Assertions.assertThat;
* @author Alex Theedom www.baeldung.com
* @version 1.0
*/
public class JsonFilterTest {
public class JsonFilterUnitTest {
@Test
public void whenSerializingUsingJsonFilter_thenCorrect() throws JsonProcessingException {

View File

@@ -19,7 +19,7 @@ import static org.assertj.core.api.Assertions.assertThat;
* @author Alex Theedom www.baeldung.com
* @version 1.0
*/
public class JsonFormatTest {
public class JsonFormatUnitTest {
@Test
public void whenSerializingUsingJsonFormat_thenCorrect() throws JsonProcessingException, ParseException {

View File

@@ -15,7 +15,7 @@ import static org.assertj.core.api.Assertions.assertThat;
* @author Alex Theedom www.baeldung.com
* @version 1.0
*/
public class JsonIdentityInfoTest {
public class JsonIdentityInfoUnitTest {
@Test
public void whenSerializingUsingJsonIdentityInfo_thenCorrect() throws JsonProcessingException {

View File

@@ -15,7 +15,7 @@ import static org.assertj.core.api.Assertions.assertThat;
* @author Alex Theedom www.baeldung.com
* @version 1.0
*/
public class JsonPropertyTest {
public class JsonPropertyUnitTest {
@Test
public void whenSerializingUsingJsonProperty_thenCorrect() throws JsonProcessingException {

View File

@@ -14,7 +14,7 @@ import static org.assertj.core.api.Assertions.assertThat;
* @author Alex Theedom www.baeldung.com
* @version 1.0
*/
public class JsonUnwrappedTest {
public class JsonUnwrappedUnitTest {
@Test
public void whenSerializingUsingJsonUnwrapped_thenCorrect() throws JsonProcessingException {

View File

@@ -13,7 +13,7 @@ import static org.assertj.core.api.Assertions.assertThat;
* @author Alex Theedom www.baeldung.com
* @version 1.0
*/
public class JsonViewTest {
public class JsonViewUnitTest {
@Test
public void whenSerializingUsingJsonView_andInternalView_thenCorrect() throws JsonProcessingException {

View File

@@ -15,7 +15,7 @@ import static org.assertj.core.api.Assertions.assertThat;
* @author Alex Theedom www.baeldung.com
* @version 1.0
*/
public class ReferenceTest {
public class ReferenceUnitTest {
@Test
public void whenSerializingUsingReference_thenCorrect() throws JsonProcessingException {

View File

@@ -13,7 +13,7 @@ import static org.assertj.core.api.Assertions.assertThat;
* @author Alex Theedom www.baeldung.com
* @version 1.0
*/
public class JsonAutoDetectTest {
public class JsonAutoDetectUnitTest {
@Test
public void whenSerializingUsingJsonAutoDetect_thenCorrect() throws JsonProcessingException {

View File

@@ -13,7 +13,7 @@ import static org.assertj.core.api.Assertions.assertThat;
* @author Alex Theedom www.baeldung.com
* @version 1.0
*/
public class JsonIgnoreTest {
public class JsonIgnoreUnitTest {
@Test
public void whenSerializingUsingJsonIgnore_thenCorrect() throws JsonProcessingException {

View File

@@ -14,7 +14,7 @@ import static org.assertj.core.api.Assertions.assertThat;
* @author Alex Theedom www.baeldung.com
* @version 1.0
*/
public class JsonIgnorePropertiesTest {
public class JsonIgnorePropertiesUnitTest {
@Test
public void whenSerializingUsingJsonIgnoreProperties_thenCorrect() throws JsonProcessingException {

View File

@@ -13,7 +13,7 @@ import static org.assertj.core.api.Assertions.assertThat;
* @author Alex Theedom www.baeldung.com
* @version 1.0
*/
public class JsonIgnoreTypeTest {
public class JsonIgnoreTypeUnitTest {
@Test
public void whenSerializingUsingJsonIgnoreType_thenCorrect() throws JsonProcessingException {

View File

@@ -13,7 +13,7 @@ import static org.assertj.core.api.Assertions.assertThat;
* @author Alex Theedom www.baeldung.com
* @version 1.0
*/
public class JsonIncludeTest {
public class JsonIncludeUnitTest {
@Test
public void whenSerializingUsingJsonInclude_thenCorrect() throws JsonProcessingException {

View File

@@ -14,7 +14,7 @@ import static org.assertj.core.api.Assertions.assertThat;
* @author Alex Theedom www.baeldung.com
* @version 1.0
*/
public class CustomTest {
public class CustomUnitTest {
@Test
public void whenSerializingUsingCustom_thenCorrect() throws JsonProcessingException {

View File

@@ -14,7 +14,7 @@ import static org.assertj.core.api.Assertions.assertThat;
* @author Alex Theedom www.baeldung.com
* @version 1.0
*/
public class DisableTest {
public class DisableUnitTest {
@Test
public void whenSerializingUsingDisable_thenCorrect() throws JsonProcessingException {

View File

@@ -15,7 +15,7 @@ import static org.assertj.core.api.Assertions.assertThat;
* @author Alex Theedom www.baeldung.com
* @version 1.0
*/
public class MixInTest {
public class MixInUnitTest {
@Test
public void whenSerializingUsingMixIn_thenCorrect() throws JsonProcessingException {

View File

@@ -15,7 +15,7 @@ import static org.assertj.core.api.Assertions.assertThat;
* @author Alex Theedom www.baeldung.com
* @version 1.0
*/
public class PolymorphismTest {
public class PolymorphismUnitTest {
@Test
public void whenSerializingUsingPolymorphism_thenCorrect() throws JsonProcessingException {

View File

@@ -15,7 +15,7 @@ import static org.assertj.core.api.Assertions.assertThat;
* @author Alex Theedom www.baeldung.com
* @version 1.0
*/
public class JsonAnyGetterTest {
public class JsonAnyGetterUnitTest {
@Test
public void whenSerializingUsingJsonAnyGetter_thenCorrect() throws JsonProcessingException {

View File

@@ -13,7 +13,7 @@ import static org.assertj.core.api.Assertions.assertThat;
* @author Alex Theedom www.baeldung.com
* @version 1.0
*/
public class JsonGetterTest {
public class JsonGetterUnitTest {
@Test
public void whenSerializingUsingJsonGetter_andNoPropertyNameSet_thenCorrect() throws JsonProcessingException {

View File

@@ -13,7 +13,7 @@ import static org.hamcrest.MatcherAssert.assertThat;
* @author Alex Theedom www.baeldung.com
* @version 1.0
*/
public class JsonPropertyOrderTest {
public class JsonPropertyOrderUnitTest {
@Test
public void whenSerializingUsingJsonPropertyOrder_thenCorrect() throws JsonProcessingException {

View File

@@ -12,7 +12,7 @@ import static org.assertj.core.api.Assertions.assertThat;
* @author Alex Theedom www.baeldung.com
* @version 1.0
*/
public class JsonRawValueTest {
public class JsonRawValueUnitTest {
@Test
public void whenSerializingUsingJsonRawValue_thenCorrect() throws JsonProcessingException {

View File

@@ -14,7 +14,7 @@ import static org.assertj.core.api.Assertions.assertThat;
* @author Alex Theedom www.baeldung.com
* @version 1.0
*/
public class JsonRootNameTest {
public class JsonRootNameUnitTest {
@Test
public void whenSerializingUsingJsonRootName_thenCorrect() throws JsonProcessingException {

View File

@@ -16,7 +16,7 @@ import static org.assertj.core.api.Assertions.assertThat;
* @author Alex Theedom www.baeldung.com
* @version 1.0
*/
public class JsonSerializeTest {
public class JsonSerializeUnitTest {
@Test
public void whenSerializingUsingJsonSerialize_thenCorrect() throws JsonProcessingException, ParseException {

View File

@@ -12,7 +12,7 @@ import static org.assertj.core.api.Assertions.assertThat;
* @author Alex Theedom www.baeldung.com
* @version 1.0
*/
public class JsonValueTest {
public class JsonValueUnitTest {
@Test
public void whenSerializingUsingJsonValue_thenCorrect() throws JsonProcessingException {