OAuthConsumerStore consumerStore = service.findByUriAndServiceName(GADGET_URI, SERVICE_NAME_FOO);
assertNull(consumerStore);
}
OAuthConsumerStore getOAuthConsumerStore() {
OAuthConsumerStore consumerStore = new OAuthConsumerStoreImpl();
consumerStore.setCallbackUrl("http://oauth.gmodules.com/gadgets/oauthcallback");
consumerStore.setConsumerKey("gadgetConsumer");
consumerStore.setConsumerSecret("gadgetSecret");
consumerStore.setGadgetUri(GADGET_URI);
consumerStore.setServiceName(SERVICE_NAME_GOOGLE);
consumerStore.setKeyName("keyName");
consumerStore.setKeyType(OAuthConsumerStore.KeyType.HMAC_SYMMETRIC);
return consumerStore;
}