Created
February 13, 2015 20:55
-
-
Save MatthewSteeples/d47f2ea58f63cdab1e24 to your computer and use it in GitHub Desktop.
Demonstration of Capability propagation
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
[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