OSDN Git Service

Maybe @dotfile command has some bugs. So I made the outside file into inside.
authortsntsumi <tsntsumi@users.sourceforge.jp>
Sat, 21 Aug 2010 18:01:39 +0000 (18:01 +0000)
committertsntsumi <tsntsumi@users.sourceforge.jp>
Sat, 21 Aug 2010 18:01:39 +0000 (18:01 +0000)
doc/mainpage.dox

index 70e8cc0..2c0a506 100644 (file)
@@ -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
  *
  */