use of org.eclipse.xtend.core.conversion.CommentRichTextEndValueConverter in project xtext-xtend by eclipse.
the class RichTextValueConverterTest method testCommentRichTextEnd_02.
@Test
public void testCommentRichTextEnd_02() {
String text = "�� comment\n'''";
String expectation = "";
CommentRichTextEndValueConverter converter = get(CommentRichTextEndValueConverter.class);
String value = converter.toValue(text, null);
assertEquals(expectation, value);
}
use of org.eclipse.xtend.core.conversion.CommentRichTextEndValueConverter in project xtext-xtend by eclipse.
the class RichTextValueConverterTest method testCommentRichTextEnd_01.
@Test
public void testCommentRichTextEnd_01() {
String text = "�� comment\ncontent'''";
String expectation = "content";
CommentRichTextEndValueConverter converter = get(CommentRichTextEndValueConverter.class);
String value = converter.toValue(text, null);
assertEquals(expectation, value);
}
Aggregations