New classes for testing

This commit is contained in:
Dave
2015-01-05 23:10:59 +02:00
parent 329cfb4d97
commit 2d754af0c2
3 changed files with 475 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
package nodash.test;
import nodash.models.NoUser;
public class NoUserTest extends NoUser {
/**
*
*/
private static final long serialVersionUID = 7791713515804652613L;
private String changableString;
public NoUserTest(String changableString) {
super();
setChangableString(changableString);
}
public String getChangableString() {
return changableString;
}
public void setChangableString(String changableString) {
this.changableString = changableString;
}
}