TestInitialize
e TestCleanup
são executados antes e após cada teste, isso garante que nenhum teste seja acoplado.
Se você deseja executar métodos antes e depois de TODOS os testes, decore os métodos relevantes com os ClassInitialize
botõesClassCleanup
atributos.
Informações relevantes do arquivo de teste gerado automaticamente no Visual Studio:
Você pode usar os seguintes atributos adicionais ao escrever seus testes:
// Use ClassInitialize to run code before running the first test in the class
[ClassInitialize()]
public static void MyClassInitialize(TestContext testContext) { }
// Use ClassCleanup to run code after all tests in a class have run
[ClassCleanup()]
public static void MyClassCleanup() { }
// Use TestInitialize to run code before running each test
[TestInitialize()]
public void MyTestInitialize() { }
// Use TestCleanup to run code after each test has run
[TestCleanup()]
public void MyTestCleanup() { }