Back to Tags
Quality
8 items tagged with "quality"
Filter by type:
Benchmarks2
FAQs4
FAQ
What is type safety?
Type safety is the degree to which a programming language prevents type errors—operations applied to values of the wrong type, like adding a number to...
FAQ
What is the test pyramid?
The test pyramid is a guideline for balancing automated tests by type and quantity. Its wide base is many fast, cheap unit tests; the middle is a smal...
FAQ
What is the difference between unit, integration, and end-to-end tests?
Unit tests verify a single function or class in isolation, often with dependencies mocked, and run very fast. Integration tests check that multiple co...
FAQ
What is Test-Driven Development (TDD)?
Test-Driven Development (TDD) is a practice where you write a failing automated test before writing the code that makes it pass. The cycle is 'red, gr...