Skip to content

Instantly share code, notes, and snippets.

@ankitvijay
Created April 11, 2020 20:52
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 ankitvijay/69b94f359a45dcbf18bdbd09fb068e10 to your computer and use it in GitHub Desktop.
Save ankitvijay/69b94f359a45dcbf18bdbd09fb068e10 to your computer and use it in GitHub Desktop.
xUnitMemberDataExample_Version2_1
public abstract class TestSource
{
public string TestName { get; }
protected TestSource(string testName)
{
TestName = testName;
}
public override string ToString()
{
return TestName.ToString();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment