in this directory you can find other directories that contains a README.md
, this directory are your tasks.
.
βββ GroupByOwner
βΒ Β βββ FileOwners.php
βΒ Β βββ FileOwnersTest.php
βΒ Β βββ README.md
βββ InvertBinaryTree
βΒ Β βββ BinaryTree.php
βΒ Β βββ BinaryTreeTest.php
βΒ Β βββ README.md
βββ OddNumber
βΒ Β βββ OddNumber.php
βΒ Β βββ OddNumberTest.php
βΒ Β βββ README.md
βββ Palindrome
βΒ Β βββ Palindrome.php
βΒ Β βββ PalindromeTest.php
βΒ Β βββ README.md
βββ Thesaurus
βΒ Β βββ README.md
βΒ Β βββ Thesaurus.php
βΒ Β βββ ThesaurusTest.php
βββ README.md
βββ phpunit.phar
Every Task
- contains a
README.md
explains what to you should do - contains a
*Test.php
file that you can run via e.g../phpunit.phar GroupByOwner/
to verify your task - contains a '*.php' file that contains the code that you need to write.
Make sure that after you are done, every test is green, e.g. run: ./phpunit.phar .
Cheers!