hathach d70decf27f update md 12 năm trước cách đây
..
lpc175x_6x a5ba283557 change MCU to TUSB_CFG_MCU 12 năm trước cách đây
lpc18xx_43xx 30c8f68930 able to get connect status change interrupt occured 12 năm trước cách đây
support b71ffe3d5a change TUSB_CFG_CONTROLLER0/1_MODE to TUSB_CFG_CONTROLLER_0/1_MODE for clearance 12 năm trước cách đây
vendor 4239e1390e delete some pdf docs 13 năm trước cách đây
.cproject a5ba283557 change MCU to TUSB_CFG_MCU 12 năm trước cách đây
.project b71ffe3d5a change TUSB_CFG_CONTROLLER0/1_MODE to TUSB_CFG_CONTROLLER_0/1_MODE for clearance 12 năm trước cách đây
readme.md d70decf27f update md 12 năm trước cách đây

readme.md

Test-Driven Development

Test-Driven Development (TDD) is a development process that relies on the repetition of a very short development cycle: first the developer writes an (initially failing) automated test case that defines a desired improvement or new function, then produces the minimum amount of code to pass that test, and finally refactors the new code to acceptable standards.

In this project, TDD is performed by the help of Ceedling, Unity & CMock as a testing framework. However, due to my limited time, not all the code base is tested yet, and it will be indeed an challenging to keep the test up to the code.

More detail on TDD can be found at

Continuous Integration

Continuous Integration (CI) is used to automatically run all the tests whenever there is a change in the code base. This makes sure that a modification of a file won't break any tests or functionality of others, verifying they all passed.

As many other open source project, tinyusb uses Travis-CI server (free for OOS). You can find my project on Travis here https://travis-ci.org/hathach/tinyusb

Build Status