use of lombok.Lombok in project pivotal-cla by pivotalsoftware.
the class ClaOAuthConfigTests method checkMemberAccess.
@Test
public void checkMemberAccess() {
// this test is only necessary because Lombok
// ensure we fail if Lombok is removed
@SuppressWarnings("unused") Lombok lombok = null;
assertThat(ClaOAuthConfig.class.getDeclaredFields()).extracting(f -> Modifier.isPrivate(f.getModifiers())).doesNotContain(false);
}
Aggregations