@Test
public void test_12_2_AsGlyphs() throws IOException {
DiagramBuilder db = createBuilder();
db.withClasses(Test12Primitives.class)
.show(db.asConnectedGlyphs())
.withFields(db.onlyAnnotated(), false).show(db.asConnectedGlyphs()).withType(null).show(db.asConnectedGlyphs());
renderDiagram(db.getDiagram());
}