Extended sequence diagram config type alias test case (#227)

This commit is contained in:
Bartek Kryza
2024-01-15 23:00:13 +01:00
parent 16195bfa62
commit 25adff0080
6 changed files with 47 additions and 18 deletions

View File

@@ -39,7 +39,11 @@ TEST_CASE("t20039", "[test-case][sequence]")
REQUIRE_THAT(src, HasCall(_A("tmain()"), _A("R"), "run()"));
REQUIRE_THAT(src, HasCall(_A("R"), _A("A<int>"), "a(int)"));
REQUIRE_THAT(src, HasCall(_A("R"), _A("A<int_vec_t>"), "a(int_vec_t)"));
REQUIRE_THAT(
src, HasCall(_A("R"), _A("A<string_vec_t>"), "a(string_vec_t)"));
REQUIRE_THAT(src, HasCall(_A("R"), _A("A<int_map_t>"), "a(int_map_t)"));
REQUIRE_THAT(
src, HasCall(_A("R"), _A("A<string_map_t>"), "a(string_map_t)"));
save_puml(config.output_directory(), diagram->name + ".puml", src);
}