public void testGetAuthorizationRequest_5() throws Exception {
final ClientCredentialsGrantTypeHandler fixture = ClientCredentialsGrantTypeHandlerTest.ccgth;
final OAuth2Accessor accessor = MockUtils.getOAuth2Accessor_ClientCredentials();
final String completeAuthorizationUrl = "xxx";
final HttpRequest result = fixture.getAuthorizationRequest(accessor, completeAuthorizationUrl);
Assert.assertNotNull(result);
final String postBody = result.getPostBodyAsString();
Assert.assertNotNull(postBody);
Assert.assertEquals(
"client_id=clientId1&client_secret=clientSecret1&grant_type=client_credentials", postBody);
}