public String getAnnotatedTitle() {

    Method testMethod = getTestMethod();
    Title title = testMethod.getAnnotation(Title.class);
    if (title != null) {
      return title.value();
    }
    return null;
  }