예제 #1
0
 // -----------------------------------------------------------------------
 public void test_negate_Boolean() {
   assertSame(null, BooleanUtils.negate(null));
   assertSame(Boolean.TRUE, BooleanUtils.negate(Boolean.FALSE));
   assertSame(Boolean.FALSE, BooleanUtils.negate(Boolean.TRUE));
 }