Created
July 9, 2015 19:45
-
-
Save angelovstanton/d04184bb311cb0b2c8c9 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 class BaseTestBehaviorObserver : ITestBehaviorObserver | |
{ | |
private readonly ITestExecutionSubject testExecutionSubject; | |
public BaseTestBehaviorObserver(ITestExecutionSubject testExecutionSubject) | |
{ | |
this.testExecutionSubject = testExecutionSubject; | |
testExecutionSubject.Attach(this); | |
} | |
public virtual void PreTestInit(TestContext context, MemberInfo memberInfo) | |
{ | |
} | |
public virtual void PostTestInit(TestContext context, MemberInfo memberInfo) | |
{ | |
} | |
public virtual void PreTestCleanup(TestContext context, MemberInfo memberInfo) | |
{ | |
} | |
public virtual void PostTestCleanup(TestContext context, MemberInfo memberInfo) | |
{ | |
} | |
public virtual void TestInstantiated(MemberInfo memberInfo) | |
{ | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment