Skip to content

Instantly share code, notes, and snippets.

@MatthewSteeples
Created February 13, 2015 20:55
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 MatthewSteeples/d47f2ea58f63cdab1e24 to your computer and use it in GitHub Desktop.
Save MatthewSteeples/d47f2ea58f63cdab1e24 to your computer and use it in GitHub Desktop.
Demonstration of Capability propagation
[RequiresCapability("SQL")]
public class TestBaseClass
{
[TestMethod]
public void RunTest1()
{
}
}
[RequiresCapability("ATS")]
public class TestDerivedClass : TestBaseClass
{
[TestMethod]
public void RunTest2()
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment