Merge pull request #3562 from nguyennamthai/BAEL-1516

Initial commit for BAEL-1516
This commit is contained in:
Tom Hombergs
2018-02-04 19:45:01 +01:00
committed by GitHub
2 changed files with 91 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
package com.baeldung.testing.assertj;
public class Member {
private String name;
private int age;
public Member(String name, int age) {
this.name = name;
this.age = age;
}
public String getName() {
return name;
}
public int getAge() {
return age;
}
}