private TokenStore tokenStore;
@Before
public void setup() {
db = new GreenhouseTestDatabaseBuilder().member().connectedApp().testData(getClass()).getDatabase();
tokenStore = new JdbcTokenStore(db);
jdbcTemplate = new JdbcTemplate(db);
controller = new SettingsController(tokenStore, jdbcTemplate);
AuthorizationRequest authorizationRequest = new DefaultAuthorizationRequest("a08318eb478a1ee31f69a55276f3af64", Arrays.asList("read", "write"));
Authentication userAuthentication = new UsernamePasswordAuthenticationToken("1", "whateveryouwantittobe");