@Test
public void testDoGetFileAcl() {
RepositoryFileDto file = mock( RepositoryFileDto.class );
RepositoryFileAclDto fileAcl = mock( RepositoryFileAclDto.class );
when( fileAcl.isEntriesInheriting() ).thenReturn( false );
when( fileService.defaultUnifiedRepositoryWebService.getFile( anyString() ) ).thenReturn( file );
when( fileService.defaultUnifiedRepositoryWebService.getAcl( anyString() ) ).thenReturn( fileAcl );
doNothing().when( fileService ).addAdminRole( fileAcl );