Убедитесь, что ваш тестовый класс содержит следующее:
private TestContext testContextInstance;
/// <summary>
/// Gets or sets the test context which provides
/// information about and functionality for the current test run.
/// </summary>
public TestContext TestContext
{
get
{
return testContextInstance;
}
set
{
testContextInstance = value;
}
}
Тогда вы можете позвонить:
this.testContextInstance.WriteLine("Hello World");