OSDN Git Service

add URL attribute to the nodes in graph StructureCollaboration.
authortsntsumi <tsntsumi@users.sourceforge.jp>
Sat, 21 Aug 2010 18:58:15 +0000 (18:58 +0000)
committertsntsumi <tsntsumi@users.sourceforge.jp>
Sat, 21 Aug 2010 18:58:15 +0000 (18:58 +0000)
doc/mainpage.dox

index 2c0a506..18614a2 100644 (file)
@@ -212,9 +212,7 @@ digraph StructureCollaboration {
   subgraph cluster1 {
     fontsize=9;
     fontname=FreeSans
-    label="Test Functions";
-    labelloc=t;
-    labeljust=l;
+    label="Test Functions"; labelloc=t; labeljust=l;
     style=dashed;
     rank=same;
     setup_setUp;
@@ -223,13 +221,20 @@ digraph StructureCollaboration {
     tearDown;
     setup_tearDown;
   }
+  TestSuite [ URL="@ref CCUnitTestSuite" ];
+  TestCase [ URL="@ref CCUnitTestCase" ];
+  TestFunc [ URL="@ref CCUnitTestFunc" ];
+  setup_setUp [ URL="@ref CCUnitTestFunc" ];
+  setUp [ URL="@ref CCUnitTestFunc" ];
+  tearDown [ URL="@ref CCUnitTestFunc" ];
+  setup_tearDown [ URL="@ref CCUnitTestFunc" ];
   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" ];
+  TestSuite -> TestCase [ headlabel="1..n", labeldistance=1, labelangle=-45 ];
+  TestCase -> setup_setUp [ headlabel="0..1", labelangle=45 ];
+  TestCase -> setUp [ headlabel="0..1", labelangle=45 ];
+  TestCase -> TestFunc [ headlabel="1..n", labelangle=-45 ];
+  TestCase -> tearDown [ headlabel="0..1", labelangle=-45 ];
+  TestCase -> setup_tearDown [ headlabel="0..1", labelangle=-45 ];
 }
  * @enddot
  *