Created
July 7, 2015 12:08
-
-
Save marcioalthmann/d9b06311efec041874db to your computer and use it in GitHub Desktop.
Testes utilizando Profile no BIT
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
[BefTestClass(Profile = "Desenvolvimento")] | |
public class Desenvolvimento | |
{ | |
[Test] | |
public void Test() | |
{ | |
Assert.AreEqual("WES_DESENVOLVIMENTO", AppContext.Administration.DefaultSystemInstanceName); | |
} | |
} | |
[BefTestClass(Profile = "Testes")] | |
public class Testes | |
{ | |
[Test] | |
public void Test() | |
{ | |
Assert.AreEqual("WES_TESTES", AppContext.Administration.DefaultSystemInstanceName); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment