From 76fb3bae99826cecc8831917ee8ba582b7d79d36 Mon Sep 17 00:00:00 2001 From: Bartek Kryza Date: Thu, 7 Oct 2021 21:21:16 +0200 Subject: [PATCH] Updated type trait testcase 34 with manually provided association relation --- tests/t00034/.clang-uml | 3 +++ tests/t00034/t00034.cc | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/t00034/.clang-uml b/tests/t00034/.clang-uml index f3a75cbc..64c130fc 100644 --- a/tests/t00034/.clang-uml +++ b/tests/t00034/.clang-uml @@ -10,3 +10,6 @@ diagrams: include: namespaces: - clanguml::t00034 + plantuml: + after: + - "@A(R) --> @A(A) : +la" diff --git a/tests/t00034/t00034.cc b/tests/t00034/t00034.cc index c0890535..0ab412c7 100644 --- a/tests/t00034/t00034.cc +++ b/tests/t00034/t00034.cc @@ -25,7 +25,8 @@ template <> struct lift_void { // TODO: This is a shortcoming of libclang which parses the type of lift_void_t // alias as unexposed, i.e. no actual reference to T can be inferred without // manually parsing the string 'typename lift_void::type' -// For now, this test validates that the visitor does not crash +// For now, this test validates that the visitor does not crash, the reference +// between R and A has to be provided in the configuration file // template using lift_void_t = typename lift_void::type;