public void testLink04() {
assertEquals("\n<p>To hide the property from appearing at all</p>", wikiModel
.render("To hide the property [[ example relation::link | ]] from appearing at all", false));
List<SemanticRelation> list = wikiModel.getSemanticRelations();
SemanticRelation rel = list.get(0);
assertTrue(rel.getRelation().equals("example relation"));
assertTrue(rel.getValue().equals("link"));
}