javatests/com/google/gitiles/IdentRevFilterTest.java [36:42]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public void matchesName() throws Exception {
    IdentRevFilter filter = IdentRevFilter.author("eSt");
    assertThat(filter.matchesPerson(new PersonIdent("eSt", "null@google.com"))).isTrue();
    assertThat(filter.matchesPerson(new PersonIdent("eStablish", "null@google.com"))).isTrue();
    assertThat(filter.matchesPerson(new PersonIdent("teSt", "null@google.com"))).isTrue();
    assertThat(filter.matchesPerson(new PersonIdent("teSting", "null@google.com"))).isTrue();
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



javatests/com/google/gitiles/IdentRevFilterTest.java [54:60]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public void matchesEmailLocalPart() throws Exception {
    IdentRevFilter filter = IdentRevFilter.author("eSt");
    assertThat(filter.matchesPerson(new PersonIdent("null", "eSt@google.com"))).isTrue();
    assertThat(filter.matchesPerson(new PersonIdent("null", "eStablish@google.com"))).isTrue();
    assertThat(filter.matchesPerson(new PersonIdent("null", "teSt@google.com"))).isTrue();
    assertThat(filter.matchesPerson(new PersonIdent("null", "teSting@google.com"))).isTrue();
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



