mirror of
https://github.com/hathach/tinyusb.git
synced 2025-03-21 16:20:46 +00:00
markdown work for TDD page
This commit is contained in:
parent
95a367bd47
commit
535c8be49d
5
changelog.md
Normal file
5
changelog.md
Normal file
@ -0,0 +1,5 @@
|
||||
# Change Log #
|
||||
|
||||
## 0.4 ##
|
||||
|
||||
Initial release.
|
@ -1,16 +1,19 @@
|
||||
# Test-Driven Development (TDD) #
|
||||
# Test-Driven Development
|
||||
|
||||
TDD indeed works with C & embedded with the help of Ceedling, Unity & CMock as a testing framework.
|
||||
[Test-Driven Development (TDD)](http://en.wikipedia.org/wiki/Test-driven_development) 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.
|
||||
|
||||
comming soon
|
||||
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
|
||||
|
||||
- [James W. Grenning's book "Test Driven Development for Embedded C"](http://www.amazon.com/Driven-Development-Embedded-Pragmatic-Programmers/dp/193435662X)
|
||||
- [throwtheswitch's Ceedling, CMock & Unity](http://throwtheswitch.org/)
|
||||
|
||||
## Continuous Integration ##
|
||||
## 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
|
||||
|
||||
comming soon
|
||||
<!-- https://travis-ci.org/hathach/tinyusb -->
|
||||
[](https://travis-ci.org/hathach/tinyusb)
|
||||
|
Loading…
x
Reference in New Issue
Block a user