Renaming the project

Renaming the project
This commit is contained in:
Himanshu Mantri 2017-06-05 21:53:31 +05:30
parent bc5e87c7ef
commit 7cf3afbd79
7 changed files with 5 additions and 13 deletions

View File

@ -4,12 +4,12 @@
<modelVersion>4.0.0</modelVersion>
<groupId>baeldung</groupId>
<artifactId>spring-check-null</artifactId>
<artifactId>call-all-getters</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>spring-check-if-a-property-is-null</name>
<description>Calling getters using Introspector</description>
<name>call-all-getters</name>
<description>Calling all getters using Introspector</description>
<parent>
<groupId>org.springframework.boot</groupId>

View File

@ -2,13 +2,10 @@ package com.baeldung;
import java.util.List;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import com.baeldung.reflection.model.Customer;
import com.baeldung.reflection.util.Utils;
@SpringBootApplication
public class SpringCheckIfAPropertyIsNullApplication {
public class CallAllGettersApplication {
public static void main(String[] args) throws Exception {

View File

@ -5,16 +5,11 @@ import java.util.List;
import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
import com.baeldung.reflection.model.Customer;
import com.baeldung.reflection.util.Utils;
@RunWith(SpringRunner.class)
@SpringBootTest
public class SpringCheckIfAPropertyIsNullApplicationTests {
public class CallAllGettersApplicationTests {
@Test
public void givenCustomer_whenAFieldIsNull_thenFieldNameInResult() throws Exception {