示例#1
0
 @Test(expectedExceptions = IllegalStateException.class)
 public void testSetErasableFailsWhenDefaultCategoryAndErasable() {
   Category category = Category.defaultCategory("Test");
   category.setErasable(true); // This should fail
 }
示例#2
0
 @Test
 public void testSetErasableSuceedsWhenDefaultCategoryAndNotErasable() {
   Category category = Category.defaultCategory("Test");
   category.setErasable(false); // This should work
   assertFalse(category.isErasable());
 }