Testing Styles

TestBox comes with two flavors of testing: BDD and xUnit, which you can use interchangeably.

BDD

BDD stands for behavior-driven development and is highly based on creating specifications and expectations of results in a readable DSL (Domain Specific Language).

xUnit

xUnit style of testing is the more traditional TDD or test-driven development approach where you create a test case CFC that matches the software under test, and for each method in the SUT, you create a test method in the test case CFC.

Last updated