use of org.eclipse.mylyn.wikitext.html.internal.UnsupportedSpanStrategy in project mylyn.docs by eclipse.
the class SpanStrategiesTest method spanWithUnrecognizedCssToUnsupported.
@Test
public void spanWithUnrecognizedCssToUnsupported() {
SpanStrategies strategies = new SpanStrategies(Sets.newHashSet(SpanType.BOLD), Collections.<SpanHtmlElementStrategy>emptyList());
assertTrue(strategies.getStrategy(SpanType.SPAN, new Attributes(null, null, "font-weight:unknown", null)) instanceof UnsupportedSpanStrategy);
}
Aggregations