Megatest

Artifact [5cfa85af9b]
Login

Artifact 5cfa85af9b5206dce812c0ebc4b9c18385a09112:


// This file is part of Megatest.
// 
//     Megatest is free software: you can redistribute it and/or modify
//     it under the terms of the GNU General Public License as published by
//     the Free Software Foundation, either version 3 of the License, or
//     (at your option) any later version.
// 
//     Megatest is distributed in the hope that it will be useful,
//     but WITHOUT ANY WARRANTY; without even the implied warranty of
//     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
//     GNU General Public License for more details.
// 
//     You should have received a copy of the GNU General Public License
//     along with Megatest.  If not, see <http://www.gnu.org/licenses/>.

digraph G {

    // put client after server so server_start node is visible
    //
    subgraph cluster_1 {
        node [style=filled,shape=box];
	
	subgraph cluster_3 {
		node [style=filled];
		label = "Test B";
		"B/bb/2";
		"B/bb/1";
	}
	subgraph cluster_2 {
		node [style=filled];
		label = "Test A";
		"A/aa/2";
		"A/aa/1" [color=cyan];
	}
	subgraph cluster_4 {
		node [style=filled];
		label = "Test C";
		"C/1/aa" [color=cyan];
		"A/aa/1" -> "C/1/aa";
		"B/bb/1" -> "C/1/bb";
		"A/aa/2" -> "C/2/aa";
		"B/bb/2" -> "C/2/bb";
	}
	subgraph cluster_5 {
		node [style=filled];
		label = "Test D";
		 "D/1/res" [color=cyan];
		"C/1/aa" -> "D/1/res";
		"C/2/aa" -> "D/2/res";
	}
	subgraph cluster_6 {
		node [style=filled];
		label = "Test E";
		"C/1/bb" -> "E/1/res";
		"C/2/bb" -> "E/2/res";
	}

        label = "Complex Itemmapping (arrows indicate order of execution)";
        color=green;
    }

}