Added virtual method call test case
This commit is contained in:
@@ -819,7 +819,8 @@ bool translation_unit_visitor::VisitCallExpr(clang::CallExpr *expr)
|
||||
return true;
|
||||
|
||||
// Skip casts, moves and such
|
||||
if (expr->isCallToStdMove()) return true;
|
||||
if (expr->isCallToStdMove())
|
||||
return true;
|
||||
|
||||
if (expr->isImplicitCXXThis())
|
||||
return true;
|
||||
|
||||
@@ -36,7 +36,7 @@ int tmain()
|
||||
result = a.a();
|
||||
|
||||
result += add(1, 2);
|
||||
|
||||
|
||||
result += add2(2, 4);
|
||||
|
||||
return result;
|
||||
|
||||
14
tests/t20026/.clang-uml
Normal file
14
tests/t20026/.clang-uml
Normal file
@@ -0,0 +1,14 @@
|
||||
compilation_database_dir: ..
|
||||
output_directory: puml
|
||||
diagrams:
|
||||
t20026_sequence:
|
||||
type: sequence
|
||||
glob:
|
||||
- ../../tests/t20026/t20026.cc
|
||||
include:
|
||||
namespaces:
|
||||
- clanguml::t20026
|
||||
using_namespace:
|
||||
- clanguml::t20026
|
||||
start_from:
|
||||
- function: "clanguml::t20026::tmain()"
|
||||
25
tests/t20026/t20026.cc
Normal file
25
tests/t20026/t20026.cc
Normal file
@@ -0,0 +1,25 @@
|
||||
namespace clanguml {
|
||||
namespace t20026 {
|
||||
|
||||
struct A {
|
||||
virtual void a() { }
|
||||
};
|
||||
|
||||
struct B : public A {
|
||||
void a() override { }
|
||||
};
|
||||
|
||||
struct C : public B {
|
||||
void a() override { }
|
||||
};
|
||||
|
||||
int tmain()
|
||||
{
|
||||
C *a{};
|
||||
|
||||
dynamic_cast<A *>(a)->a();
|
||||
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
42
tests/t20026/test_case.h
Normal file
42
tests/t20026/test_case.h
Normal file
@@ -0,0 +1,42 @@
|
||||
/**
|
||||
* tests/t20026/test_case.h
|
||||
*
|
||||
* Copyright (c) 2021-2022 Bartek Kryza <bkryza@gmail.com>
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
TEST_CASE("t20026", "[test-case][sequence]")
|
||||
{
|
||||
auto [config, db] = load_config("t20026");
|
||||
|
||||
auto diagram = config.diagrams["t20026_sequence"];
|
||||
|
||||
REQUIRE(diagram->name == "t20026_sequence");
|
||||
|
||||
auto model = generate_sequence_diagram(*db, diagram);
|
||||
|
||||
REQUIRE(model->name() == "t20026_sequence");
|
||||
|
||||
auto puml = generate_sequence_puml(diagram, *model);
|
||||
AliasMatcher _A(puml);
|
||||
|
||||
REQUIRE_THAT(puml, StartsWith("@startuml"));
|
||||
REQUIRE_THAT(puml, EndsWith("@enduml\n"));
|
||||
|
||||
// Check if all calls exist
|
||||
REQUIRE_THAT(puml, HasCall(_A("tmain()"), _A("A"), "a()"));
|
||||
|
||||
save_puml(
|
||||
"./" + config.output_directory() + "/" + diagram->name + ".puml", puml);
|
||||
}
|
||||
@@ -272,6 +272,7 @@ using namespace clanguml::test::matchers;
|
||||
#include "t20023/test_case.h"
|
||||
#include "t20024/test_case.h"
|
||||
#include "t20025/test_case.h"
|
||||
#include "t20026/test_case.h"
|
||||
|
||||
///
|
||||
/// Package diagram tests
|
||||
|
||||
@@ -223,6 +223,9 @@ test_cases:
|
||||
- name: t20025
|
||||
title: Skip decorator sequence diagram test case
|
||||
description:
|
||||
- name: t20026
|
||||
title: Virtual method call sequence diagram test case
|
||||
description:
|
||||
Package diagrams:
|
||||
- name: t30001
|
||||
title: Basic package diagram test case
|
||||
|
||||
Reference in New Issue
Block a user