@Test
  public void findingNonExistentMethodQuietlyWrapsNoSuchMethodException() {
    thrown.expect(ReflectionException.class);
    thrown.expectMessage(NoSuchMethodException.class.getName());

    findMethod(getClass(), "foo");
  }