Fixed t00014 on macos (Fixes #176)

This commit is contained in:
Bartek Kryza
2023-12-05 23:11:36 +01:00
parent 9280edfafb
commit f1d3695ccc
4 changed files with 21 additions and 7 deletions

View File

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