this.auth = new BasicAuth();
this.man = ManagerLayer.getInstance();
this.sessions = man.getSessions();
// add the test user to the database
DataStore db = DataStore.getDataStore();
String hashedPassword = new Sha256Password().generateHash("jayms");
this.u = new User("Tyler", "twack", hashedPassword, 5);
db.save(this.u);
}