// Testsuites root node
int countChecked=0, countUnchecked=0;
int childCount = ((TCTreeNode)this.getRoot()).getChildCount();
Enumeration<?> enumChildren = ((TCTreeNode)this.getRoot()).children();
while (enumChildren.hasMoreElements()) {
TCTreeNode childParentNode = (TCTreeNode)enumChildren.nextElement();
JTreeNode childParentFileNode = (JTreeNode)childParentNode.getUserObject();
TristateCheckBox.State childState = getNodeState(childParentFileNode, testbedName);
if (childState==TristateCheckBox.SELECTED)
countChecked++;
if (childState==TristateCheckBox.NOT_SELECTED)
countUnchecked++;