use of org.kie.workbench.common.stunner.core.client.shape.SvgDataUriGlyph in project kie-wb-common by kiegroup.
the class SvgElementGlyphRendererTest method testRender.
@Test
public void testRender() {
final SvgDataUriGlyph glyph = SvgDataUriGlyph.Builder.build(uri);
tested.render(glyph, 100, 200);
verify(viewSupplier, times(1)).get();
verify(view, times(1)).setDOMContent(eq(SVG_CONTENT), eq(100), eq(200));
}
Aggregations