diff options
Diffstat (limited to 'src/test/java/People.java')
| -rw-r--r-- | src/test/java/People.java | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/test/java/People.java b/src/test/java/People.java new file mode 100644 index 0000000..46c6902 --- /dev/null +++ b/src/test/java/People.java @@ -0,0 +1,29 @@ +public class People { + private String name; + private int age; + private String weight; + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public int getAge() { + return age; + } + + public void setAge(int age) { + this.age = age; + } + + public String getWeight() { + return weight; + } + + public void setWeight(String weight) { + this.weight = weight; + } +} |
