Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 845 Bytes

Lesson.md

File metadata and controls

27 lines (20 loc) · 845 Bytes

PHP docs

OOP docs

Редактор

PHPStorm

Vim

Git

docs

ProGit

PHPUnit docs

Whenever you are tempted to type something into a print statement or a debugger expression, write it as a test instead.

TDD

  1. Вы пишите какой-то тест
  2. Вы запускаете его и он падает!
  3. Вы "чините" упавший тест, написав код
  4. Вы запускаете тест
  5. Он проходит (мы надеемся на это)
  6. Вы "рефакторите"
  7. Вы запускаете тест и он падает!

Red -> Green -> Refactor