removed shitty """"unit tests""""

This commit is contained in:
Dave
2015-06-27 22:00:00 +02:00
parent 213df01c78
commit ae4266b9ba
5 changed files with 0 additions and 912 deletions

View File

@@ -1,26 +0,0 @@
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;
}
}