use of org.apache.hadoop.yarn.server.api.protocolrecords.RefreshUserToGroupsMappingsResponse in project hadoop by apache.
the class TestResourceManagerAdministrationProtocolPBClientImpl method testRefreshUserToGroupsMappings.
/**
* Test method refreshUserToGroupsMappings. This method is present and it works.
*/
@Test
public void testRefreshUserToGroupsMappings() throws Exception {
RefreshUserToGroupsMappingsRequest request = recordFactory.newRecordInstance(RefreshUserToGroupsMappingsRequest.class);
RefreshUserToGroupsMappingsResponse response = client.refreshUserToGroupsMappings(request);
assertNotNull(response);
}
Aggregations