use of org.eclipse.mylyn.wikitext.html.internal.SupportedBlockStrategy in project mylyn.docs by eclipse.
the class BlockStrategiesTest method assertUnsupported.
private void assertUnsupported(BlockStrategies strategies, BlockType blockType) {
BlockStrategy blockStrategy = strategies.getStrategy(blockType, new Attributes());
assertNotNull(blockStrategy);
assertFalse(blockStrategy instanceof SupportedBlockStrategy);
}
Aggregations