in e2etest/GuestProxyAgentTest/TestScenarios/TestScenarioBase.cs [70:91]
protected void PreCheck()
{
if (_testCases.Count == 0)
{
throw new Exception("Test cases list is empty.");
}
if (_testScenarioSetting == null)
{
throw new Exception("Test scenario setting is not set.");
}
if (_junitTestResultBuilder == null)
{
throw new Exception("JUnit test result builder is not set");
}
if (_vmBuilder == null)
{
throw new Exception("VM builder is not set");
}
}