Gemeinsam zu mehr Effizienz in der Anwendungserstellung
K |
K |
||
Zeile 3: | Zeile 3: | ||
graph[overlap=false, concentrate=true]; | graph[overlap=false, concentrate=true]; | ||
- | VBATestSuite [shape=octagon, style=filled]; | + | VBATestSuite [shape=octagon, style=filled, URL="http://source.access-codelib.net/doc/draft/class_v_b_a_test_suite.html"]; |
- | SimplyVBUnit [shape=octagon]; | + | SimplyVBUnit [shape=octagon, URL="http://wiki.access-codelib.net/SimplyVBUnit"]; |
TestStart [label="Start der Tests"]; | TestStart [label="Start der Tests"]; |
<graphviz_twopi> digraph G {
graph[overlap=false, concentrate=true];
VBATestSuite [shape=octagon, style=filled, URL="http://source.access-codelib.net/doc/draft/class_v_b_a_test_suite.html"]; SimplyVBUnit [shape=octagon, URL="http://wiki.access-codelib.net/SimplyVBUnit"];
TestStart [label="Start der Tests"]; TestStartAll [label="Alle Tests", shape=none]; TestStartClass [label="Einzelne Testklasse", shape=none]; TestStartProc [label="Testmethode", shape=none]; TestErstellen [label="Tests erstellen"]; TestErstellenManuell [label="manuell in Testklasse", shape=none]; TestErstellenAddIn [label="Add-In-Unterstuetzung", shape=none];
TestDaten [label="Testdaten", shape=octagon]; TestDatenComment [label="aus Test-Prozedur\n(Kommentar)", shape=none]; TestDatenTestTab [label="aus Test-Tabelle", shape=none]; TestDatenBspTab [label="aus Beispiel-Tabelle", shape=none];
TestDurchfuehrung [label="Tests durchfuehren"];
Ausgabe; AusgabeDebugFenster [label="Debug-Fenster", shape=none]; AusgabeTextDatei [label="Text-Datei", shape=none]; AusgabeString [label="String", shape=none]; AusgabeEreignis [label="Ereignis", shape=none];
VBATestSuite -> TestErstellen [arrowhead=dot]; VBATestSuite -> TestStart [arrowhead=dot]; VBATestSuite -> TestDurchfuehrung [arrowhead=dot]; VBATestSuite -> Ausgabe [arrowhead=dot];
TestErstellen -> TestErstellenManuell; TestErstellen -> TestErstellenAddIn;
TestStart -> TestStartAll; TestStart -> TestStartClass; TestStart -> TestStartProc;
SimplyVBUnit -> TestDurchfuehrung; VBATestSuite -> TestDaten [arrowhead=dot]; TestErstellen -> TestDaten; TestDaten -> TestDurchfuehrung;
TestDatenTestTab -> TestDaten; TestDatenBspTab -> TestDaten; TestDatenComment -> TestDaten;
Ausgabe -> AusgabeEreignis; Ausgabe -> AusgabeDebugFenster [style=dotted]; Ausgabe -> AusgabeTextDatei [style=dotted]; Ausgabe -> AusgabeString [style=dotted];
}
</graphviz_twopi>