@Override
  @Test(expected = NoSuchElementException.class)
  public void minBy() {
    ImmutableMap<Integer, String> map = this.classUnderTest();

    map.minBy(Functions.getStringPassThru());
  }