Skip to content

Commit

Permalink
add test for setNotCrossedOut()
Browse files Browse the repository at this point in the history
  • Loading branch information
koentsje committed Apr 15, 2014
1 parent 4e71137 commit ad24978
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -169,4 +169,11 @@ public void testSetImagePositive() {
Assert.assertFalse(testStyleImpl.imageNegative);
}

@Test
public void testSetNotCrossedOut() {
testStyleRange.strikeout = true;
testStyleImpl.setNotCrossedOut();
Assert.assertFalse(testStyleRange.strikeout);
}

}

0 comments on commit ad24978

Please sign in to comment.