javatests/com/google/gitiles/IdentRevFilterTest.java [45:51]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public void caseSensitiveName() throws Exception {
    IdentRevFilter filter = IdentRevFilter.author("eSt");
    assertThat(filter.matchesPerson(new PersonIdent("est", "null@google.com"))).isFalse();
    assertThat(filter.matchesPerson(new PersonIdent("Establish", "null@google.com"))).isFalse();
    assertThat(filter.matchesPerson(new PersonIdent("tESt", "null@google.com"))).isFalse();
    assertThat(filter.matchesPerson(new PersonIdent("tesTing", "null@google.com"))).isFalse();
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



javatests/com/google/gitiles/IdentRevFilterTest.java [63:69]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public void caseSensitiveEmailLocalPart() throws Exception {
    IdentRevFilter filter = IdentRevFilter.author("eSt");
    assertThat(filter.matchesPerson(new PersonIdent("null", "est@google.com"))).isFalse();
    assertThat(filter.matchesPerson(new PersonIdent("null", "Establish@google.com"))).isFalse();
    assertThat(filter.matchesPerson(new PersonIdent("null", "tESt@google.com"))).isFalse();
    assertThat(filter.matchesPerson(new PersonIdent("null", "tesTing@google.com"))).isFalse();
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



