// check actual depth of state machine
if(m_nActualStateMachineDepth > Configuration.getMaximalStatemachineDepth())
return false;
// check TestCaseGraph
TestCaseGraphDepthConstraint m_oDepthConstraint =
new TestCaseGraphDepthConstraint(
Configuration.getMaximalTestGraphDepth(), getTestCaseGraph());
if(!m_oDepthConstraint.isFulfilled())
return false;
return true;
}