Monday 20 March 2017

TDD Test Driven Development
ATDD : Acceptance Test Driven Development (驗收驅動測試開發)
UTDD : Unit Test Driven Development (單元驅動測試開發)

BDD(Behavior Driven Development)
EDD(Example Driven Development)
FDD(Feature Driven Development)
CDCD(Consumer Driven Contract Development)


No comments:

Post a Comment

how-to-recursively-create-subfolder-in-each-folder-of-a-directory-in-cmd

test.cmd: @echo off setlocal for /f "usebackq tokens=*" %%a in (`dir /b /a:d`) do ( rem enter the directory pushd %%a echo...