Gemeinsam zu mehr Effizienz in der Anwendungserstellung
K (Die Seite wurde neu angelegt: „<graphviz_twopi> digraph G { graph[overlap=false]; VBATestSuite [shape=octagon, style=filled]; SimplyVBUnit [shape=octagon]; Ausgabe; AusgabeDebugFenster […“) |
K |
||
Zeile 1: | Zeile 1: | ||
<graphviz_twopi> | <graphviz_twopi> | ||
digraph G { | digraph G { | ||
- | graph[overlap=false]; | + | graph[overlap=false, concentrate=true]; |
VBATestSuite [shape=octagon, style=filled]; | VBATestSuite [shape=octagon, style=filled]; | ||
SimplyVBUnit [shape=octagon]; | SimplyVBUnit [shape=octagon]; | ||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
TestStart [label="Start der Tests"]; | TestStart [label="Start der Tests"]; | ||
Zeile 21: | Zeile 15: | ||
TestErstellenAddIn [label="Add-In-Unterstuetzung", shape=none]; | TestErstellenAddIn [label="Add-In-Unterstuetzung", shape=none]; | ||
- | + | TestDaten [label="Testdaten", shape=octagon]; | |
+ | TestDatenComment [label="aus Test-Prozedur (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 -> TestErstellen [arrowhead=dot]; | ||
VBATestSuite -> TestStart [arrowhead=dot]; | VBATestSuite -> TestStart [arrowhead=dot]; | ||
+ | VBATestSuite -> TestDurchfuehrung [arrowhead=dot]; | ||
VBATestSuite -> Ausgabe [arrowhead=dot]; | VBATestSuite -> Ausgabe [arrowhead=dot]; | ||
TestErstellen -> TestErstellenManuell; | TestErstellen -> TestErstellenManuell; | ||
TestErstellen -> TestErstellenAddIn; | TestErstellen -> TestErstellenAddIn; | ||
+ | |||
+ | |||
TestStart -> TestStartAll; | TestStart -> TestStartAll; | ||
TestStart -> TestStartClass; | TestStart -> TestStartClass; | ||
TestStart -> TestStartProc; | TestStart -> TestStartProc; | ||
+ | |||
+ | SimplyVBUnit -> TestDurchfuehrung; | ||
+ | VBATestSuite -> TestDaten [arrowhead=dot]; | ||
+ | TestErstellen -> TestDaten; | ||
+ | TestDaten -> TestDurchfuehrung; | ||
+ | |||
+ | TestDatenTestTestTab -> TestDaten; | ||
+ | TestDatenTestBspTab -> TestDaten; | ||
+ | TestDatenComment -> TestDaten; | ||
Ausgabe -> AusgabeEreignis; | Ausgabe -> AusgabeEreignis; |
<graphviz_twopi> digraph G {
graph[overlap=false, concentrate=true];
VBATestSuite [shape=octagon, style=filled]; SimplyVBUnit [shape=octagon];
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 (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;
TestDatenTestTestTab -> TestDaten; TestDatenTestBspTab -> TestDaten; TestDatenComment -> TestDaten;
Ausgabe -> AusgabeEreignis; Ausgabe -> AusgabeDebugFenster [style=dotted]; Ausgabe -> AusgabeTextDatei [style=dotted]; Ausgabe -> AusgabeString [style=dotted];
}
</graphviz_twopi>