This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public abstract class TestContext | |
{ | |
public const string AspNetDevelopmentServerPrefix = "AspNetDevelopmentServer."; | |
protected TestContext(); | |
public virtual UnitTestOutcome CurrentTestOutcome { get; } | |
public abstract DbConnection DataConnection { get; } | |
public abstract DataRow DataRow { get; } | |
public abstract IDictionary Properties { get; } | |
public virtual System.Web.UI.Page RequestedPage { get; } | |
public virtual string TestDeploymentDir { get; } | |
public virtual string TestDir { get; } | |
public virtual string TestLogsDir { get; } | |
public virtual string TestName { get; } | |
public abstract void AddResultFile(string fileName); | |
public abstract void BeginTimer(string timerName); | |
public abstract void EndTimer(string timerName); | |
public abstract void WriteLine(string format, params object[] args); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment