Mocks, fakes, and stubs
Mocks, fakes, and stubs definitions Classification between mocks, fakes, and stubs is highly inconsistent across the literature. Consistent among the literature, though, is that they …
Scaling Agile with You
Mocks, fakes, and stubs definitions Classification between mocks, fakes, and stubs is highly inconsistent across the literature. Consistent among the literature, though, is that they …
Spike Testing practice Typically, a “spike test” involves gathering additional information or testing for easily reproduced edge cases. More informations for Scrum Testing More informations …
White-Box Testing definition White-box testing is a software testing method in which the internal structure/design/implementation of the item being tested is known to the tester …
Unit Testing definition Unit Testing is a Practice of testing certain functions and areas of code or individual units of source code : Unit Tests …
User Acceptance Testing definition User acceptance testing verifies the user-facing functionality of a software product in real-world scenarios. User Acceptance Testing purpose With UAT, we’re …
Test First Development (TFD) definition Test First Development (TFD) is designing tests before satisfying them. Test-First Development is an evolutionary approach to programming where agile …
Test Driven Development (TDD) definition TDD is one of the most important concepts in Agile, TDD is a test-first software development practice in which test …
Test Double definition Test Double is a generic term for any case where you replace a production object for testing purposes. There are at least …
Static Analysis definition Static analysis, also called static code analysis, is a method of computer program debugging that is done by examining the code without …
Smoke Testing definition Smoke Testing is a non-exhaustive set of tests that aim at ensuring that the most important functions work. Smoke Testing purpose The …