From 74cd5fc4b024d3de6729b9bbb1ea2a3311a23e7b Mon Sep 17 00:00:00 2001 From: tsntsumi Date: Sat, 21 Aug 2010 18:01:39 +0000 Subject: [PATCH] Maybe @dotfile command has some bugs. So I made the outside file into inside. --- doc/mainpage.dox | 29 +++++++++++++++++++++++++++-- 1 file changed, 27 insertions(+), 2 deletions(-) diff --git a/doc/mainpage.dox b/doc/mainpage.dox index 70e8cc0..2c0a506 100644 --- a/doc/mainpage.dox +++ b/doc/mainpage.dox @@ -205,8 +205,33 @@ This library is released under the GNU * @c setUp ¤È @c teaDown ¤¬¼«Æ°Åª¤Ë¼Â¹Ô¤µ¤ì¤Þ¤¹¡£ * @endif * - * @dotfile StructCollabo.dot @~english "CCUnit Structure Collaboration" - * @~japanese "CCUnit ¹½Â¤Âι½À®¿Þ" @~ + * @dot +digraph StructureCollaboration { + node [ fontsize=9, fontname=Helvetica ]; + edge [ dir=back, fontsize=9 ]; + subgraph cluster1 { + fontsize=9; + fontname=FreeSans + label="Test Functions"; + labelloc=t; + labeljust=l; + style=dashed; + rank=same; + setup_setUp; + setUp; + TestFunc; + tearDown; + setup_tearDown; + } + TestSuite -> TestSuite [ label="1..n" ]; + TestCase -> setup_setUp [ label="0..1" ]; + TestCase -> setUp [ label="0..1" ]; + TestSuite -> TestCase [ label="1..n" ]; + TestCase -> TestFunc [ label="1..n" ]; + TestCase -> tearDown [ label="0..1" ]; + TestCase -> setup_tearDown [ label="0..1" ]; +} + * @enddot * */ -- 2.11.0