Added test case for dependants and dependencies for include graph diagrams
This commit is contained in:
10
tests/t40003/src/dependants/t1.cc
Normal file
10
tests/t40003/src/dependants/t1.cc
Normal file
@@ -0,0 +1,10 @@
|
||||
#include "../../include/dependants/t3.h"
|
||||
#include "../../include/dependants/t4.h"
|
||||
|
||||
namespace clanguml::t40003::dependants {
|
||||
void t()
|
||||
{
|
||||
t3();
|
||||
t4();
|
||||
}
|
||||
}
|
||||
10
tests/t40003/src/dependencies/t2.cc
Normal file
10
tests/t40003/src/dependencies/t2.cc
Normal file
@@ -0,0 +1,10 @@
|
||||
#include "../../include/dependencies/t3.h"
|
||||
#include "../../include/dependencies/t5.h"
|
||||
|
||||
namespace clanguml::t40003::dependencies {
|
||||
void t()
|
||||
{
|
||||
t3();
|
||||
t5();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user