diff --git a/textbook/chap7.md b/textbook/chap7.md index 7637f44..005060e 100644 --- a/textbook/chap7.md +++ b/textbook/chap7.md @@ -30,3 +30,14 @@ Design of our to-do list app: * View a list: use GET request. (It's a normal browser visit to the page) * Create a brand new list: a special URL will accept POST requests `lists/new` * Add new item to list: have a separate URL to send POST requests `/lists//add_item` + +## 7.2 Implementing the New Design Incrementally Using TDD + +![Implementing New Design using TDD](img/7-1.jpg) + +* On top-level, adding new feature by: + * 1. new FT + * 2. New app code + * 3. Refactor code +* On UT level: + * Add/Modify tests to verify changes we make \ No newline at end of file diff --git a/textbook/img/7-1.jpg b/textbook/img/7-1.jpg new file mode 100644 index 0000000..402ea74 Binary files /dev/null and b/textbook/img/7-1.jpg differ