Code and tests for AssertJ

This commit is contained in:
Alex Theedom 2016-06-22 22:42:49 +01:00
parent bea86d4a33
commit d429cb401e
4 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
package com.baeldung.assertj.domain;
package com.baeldung.assertj.introduction.domain;
public class Dog {
private String name;

View File

@ -1,4 +1,4 @@
package com.baeldung.assertj.domain;
package com.baeldung.assertj.introduction.domain;
public class Person {
private String name;

View File

@ -1,7 +1,7 @@
package com.baeldung.assertj;
package com.baeldung.assertj.introduction;
import com.baeldung.assertj.domain.Dog;
import com.baeldung.assertj.domain.Person;
import com.baeldung.assertj.introduction.domain.Dog;
import com.baeldung.assertj.introduction.domain.Person;
import org.junit.Ignore;
import org.junit.Test;