Added test case for package diagram from directory structure
This commit is contained in:
11
tests/t30010/libraries/lib1/lib1.h
Normal file
11
tests/t30010/libraries/lib1/lib1.h
Normal file
@@ -0,0 +1,11 @@
|
||||
#pragma once
|
||||
|
||||
namespace clanguml {
|
||||
namespace t30010 {
|
||||
namespace library1 {
|
||||
|
||||
struct A { };
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
13
tests/t30010/libraries/lib2/lib2.h
Normal file
13
tests/t30010/libraries/lib2/lib2.h
Normal file
@@ -0,0 +1,13 @@
|
||||
#pragma once
|
||||
|
||||
namespace clanguml {
|
||||
namespace t30010 {
|
||||
namespace library2 {
|
||||
|
||||
template <typename T> struct B {
|
||||
T b;
|
||||
};
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
11
tests/t30010/libraries/lib3/lib3.h
Normal file
11
tests/t30010/libraries/lib3/lib3.h
Normal file
@@ -0,0 +1,11 @@
|
||||
#pragma once
|
||||
|
||||
namespace clanguml {
|
||||
namespace t30010 {
|
||||
namespace library3 {
|
||||
|
||||
enum E { e1, e2, e3 };
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
11
tests/t30010/libraries/lib4/lib4.h
Normal file
11
tests/t30010/libraries/lib4/lib4.h
Normal file
@@ -0,0 +1,11 @@
|
||||
#pragma once
|
||||
|
||||
namespace clanguml {
|
||||
namespace t30010 {
|
||||
namespace library4 {
|
||||
|
||||
struct C { };
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user