Move test files to appropriate package directories

This commit is contained in:
Chris Smowton
2021-08-04 16:50:03 +01:00
parent 5a42448888
commit 1f08c3fe55
2 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
package com.example;
public final class User {
private String uid;
private String name;
public User() {
}
public String getUid() {
return uid;
}
public void setUid(String uid) {
this.uid = uid;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String toString() {
return "User[ name = "+name+", uid: "+uid+ "]";
}
}