Fixed message chain equality comparison

This commit is contained in:
Bartek Kryza
2023-09-02 12:57:03 +02:00
parent de9f614cb0
commit 85856426f3
5 changed files with 45 additions and 40 deletions

View File

@@ -139,9 +139,12 @@ TEST_CASE("t00014", "[test-case][class]")
REQUIRE_THAT(puml,
IsAggregation(_A("R<T>"),
_A("A<float,std::unique_ptr<std::string>>"), "-floatstring"));
#if !defined(__APPLE__)
// TODO(#176)
REQUIRE_THAT(puml, IsDependency(_A("R<T>"), _A("A<char,std::string>")));
REQUIRE_THAT(
puml, IsDependency(_A("R<T>"), _A("A<wchar_t,std::string>")));
#endif
save_puml(
config.output_directory() + "/" + diagram->name + ".puml", puml);