@Test
  public void testGetValueWithoutResolver() throws Exception {
    initMocks();

    FileEntry fileEntry = mock(FileEntry.class);
    ThemeDisplay themeDisplay = mock(ThemeDisplay.class);

    String value =
        ItemSelectorRepositoryEntryBrowserUtil.getValue(
            null, new FileEntryItemSelectorReturnType(), fileEntry, themeDisplay);

    Assert.assertEquals("ItemSelectorRepositoryEntryBrowserReturnTypeUtilValue", value);
  }