Skip to content

Instantly share code, notes, and snippets.

@angelovstanton
Last active August 29, 2015 14:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save angelovstanton/9d5e43c1f207a73afe72 to your computer and use it in GitHub Desktop.
Save angelovstanton/9d5e43c1f207a73afe72 to your computer and use it in GitHub Desktop.
public class TestExecutionEventArgs : EventArgs
{
private readonly TestContext testContext;
private readonly MemberInfo memberInfo;
public TestExecutionEventArgs(TestContext context, MemberInfo memberInfo)
{
this.testContext = context;
this.memberInfo = memberInfo;
}
public MemberInfo MemberInfo
{
get
{
return this.memberInfo;
}
}
public TestContext TestContext
{
get
{
return this.testContext;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment