Test Suite (suíte de testes) - Definição do Glossário CI/CD
Uma suíte de testes é um grupo nomeado de test cases executados como uma unidade.
Uma suíte de testes é uma coleção de test cases relacionados agrupados para rodar juntos, muitas vezes por feature, módulo ou tipo (unit, integration). Rodar a suíte valida uma fatia do sistema.
As suítes permitem que as equipes organizem e rodem seletivamente os testes, por exemplo rodando a suíte de unit rápida a cada push e a suíte de integration lenta durante a noite.
No CI
Dividir uma suíte grande em suítes direcionadas permite que os pipelines paralelizem e falhem rápido nos testes mais baratos primeiro.
Guias relacionados
Test Case - CI/CD Glossary DefinitionTest Case: A test case is a single scenario with defined inputs, actions, and expected outcomes that verifies…
Test Runner - CI/CD Glossary DefinitionTest Runner: A test runner is the tool that discovers, executes, and reports on tests. Examples include Jest,…
Smoke Testing - CI/CD Glossary DefinitionSmoke Testing: Smoke testing is a quick, shallow check that the most critical paths of a build work at all, r…