Added test case for inline diagram in config without code

This commit is contained in:
Bartek Kryza
2021-03-12 22:22:27 +01:00
parent 0ee5eeb619
commit 520071f5b3
8 changed files with 69 additions and 15 deletions

View File

@@ -214,6 +214,9 @@ public:
{
ostr << "@startuml" << std::endl;
for (const auto &b : m_config.puml.before)
ostr << b << std::endl;
for (const auto &c : m_model.classes) {
generate_aliases(c, ostr);
ostr << std::endl;
@@ -229,6 +232,9 @@ public:
ostr << std::endl;
}
for (const auto &b : m_config.puml.after)
ostr << b << std::endl;
ostr << "@enduml" << std::endl;
}