Skip to content

Commit

Permalink
Add email assert
Browse files Browse the repository at this point in the history
  • Loading branch information
minsoojun committed Jan 28, 2018
1 parent 87bf247 commit caec9d9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/test/java/sample/customer/biz/domain/CustomerTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ public class CustomerTest {
public void testCustmer(){
Customer cus = new Customer("TestMe", "minsoo@ng.com", new Date(System.currentTimeMillis()), 3);
assertTrue(cus.isNgEmail());
assertEquals("minsoo@ng.com",cus.getEmailAddress());
assertEquals("FavoriteNumber", new Integer(3), cus.getFavoriteNumber());
}
}

0 comments on commit caec9d9

Please sign in to comment.