private TestContext m_testContext; public TestContext TestContext { get { return m_testContext; } set { m_testContext = value; } }
string firstParameter = m_testContext.DataRow[0].ToString(); string secondParameter = m_testContext.DataRow["SecondColumn"].ToString();
Console.WriteLine("TestDir: {0}", m_testContext.TestDir); Console.WriteLine("TestDeploymentDir: {0}", m_testContext.TestDeploymentDir); Console.WriteLine("TestLogsDir: {0}", m_testContext.TestLogsDir); Console.WriteLine("TestName: {0}", m_testContext.TestName);