use of org.commonmark.node.Link in project hippo by NHS-digital-website.
the class HyperlinkAttributeProviderTest method setsHyperlinkCssClassOnLinkElement.
@Test
public void setsHyperlinkCssClassOnLinkElement() {
// given
final Node nodeLink = new Link();
// when
hyperlinkAttributeProvider.setAttributes(nodeLink, "tagName is ignored", attributes);
// then
then(attributes).should().put("class", "nhsd-a-link");
then(attributes).shouldHaveNoMoreInteractions();
}