private static final String CONSUMER_KEY = "orkut.com:623061448914";
private static final String CONSUMER_SECRET = "uynAeXiWTisflWX99KU1D2q5";
@Test(expected = RequestException.class)
public void testEmptyRequestQueue() throws RequestException, IOException {
Client client = new Client(new OrkutProvider(), new OAuth2LeggedScheme(
CONSUMER_KEY, CONSUMER_SECRET, VIEWER_ID));
Map<String, Request> requests = new HashMap<String, Request>();
client.send(requests);
}