Merge pull request #3562 from nguyennamthai/BAEL-1516
Initial commit for BAEL-1516
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user