@Test
public void testConvertibleNoteTextMayBeNull() throws ConversionException {
try {
// by default there are no notes, i.e. they are null
assertNull(new ConvertibleNoteText(newNodeModel(), null, null).getText());
}
catch (Exception e) {
fail("null texts are allowed for other Convertibles, but got " + e);
}
}