Updated test cases documentation

This commit is contained in:
Bartek Kryza
2022-02-14 23:51:43 +01:00
parent 96c6851e52
commit 7a475411eb
7 changed files with 22 additions and 1 deletions

View File

@@ -43,5 +43,6 @@
* [t30004](./test_cases/t30004.md) - PlantUML package decorators test case
* [t30005](./test_cases/t30005.md) - Package namespace alias test case
* [t30006](./test_cases/t30006.md) - Package split namespace test case
* [t30007](./test_cases/t30007.md) - Package diagram layout hints test case
## Configuration diagrams
* [t90000](./test_cases/t90000.md) - Basic config test

View File

@@ -18,6 +18,7 @@ diagrams:
## Source code
File t00006.cc
```cpp
#include <array>
#include <map>
#include <vector>

View File

@@ -19,6 +19,8 @@ diagrams:
## Source code
File t00017.cc
```cpp
#include <utility>
namespace clanguml {
namespace t00017 {
class A {
@@ -55,6 +57,15 @@ class K {
};
class R {
explicit R(int &some_int, C &cc, const E &ee, F &&ff, I *&ii)
: some_int_reference{some_int}
, c{cc}
, e{ee}
, f{std::move(ff)}
, i{ii}
{
}
private:
int some_int;
int *some_int_pointer;
@@ -64,7 +75,7 @@ private:
B *b;
C &c;
const D *d;
const E &e{};
const E &e;
F &&f;
G **g;
H ***h;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 28 KiB

View File

@@ -59,6 +59,11 @@ enum class F { one, two, three };
/// \uml{note[right] R class note.}
class R {
explicit R(C &c)
: ccc(c)
{
}
A aaa;
B *bbb;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 59 KiB

After

Width:  |  Height:  |  Size: 62 KiB

View File

@@ -125,6 +125,9 @@ test_cases:
- name: t30006
title: Package split namespace test case
description:
- name: t30007
title: Package diagram layout hints test case
description:
Configuration diagrams:
- name: t90000
title: Basic config test