Created
July 9, 2015 19:44
-
-
Save angelovstanton/e1613445b4d0582632f8 to your computer and use it in GitHub Desktop.
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 interface ITestExecutionSubject | |
{ | |
void Attach(ITestBehaviorObserver observer); | |
void Detach(ITestBehaviorObserver observer); | |
void PreTestInit(TestContext context, MemberInfo memberInfo); | |
void PostTestInit(TestContext context, MemberInfo memberInfo); | |
void PreTestCleanup(TestContext context, MemberInfo memberInfo); | |
void PostTestCleanup(TestContext context, MemberInfo memberInfo); | |
void TestInstantiated(MemberInfo memberInfo); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment