TASK: Add some info to readme

* Remove results folder for cleanup. As it's created on demand.
* Add missing information about structure of tests.
This commit is contained in:
Daniel Siepmann 2019-02-01 09:43:34 +01:00
parent 37dc2c7821
commit 55f72aac20
Signed by: Daniel Siepmann
GPG key ID: 33D6629915560EF4

View file

@ -34,7 +34,7 @@ Execute the following::
Clean everything::
rm -rf composer.lock vendor web Tests phpunit.xml.dist infection.json.dist
rm -rf composer.lock vendor web Tests phpunit.xml.dist infection.json.dist Results
Installation development dependencies using composer::
@ -88,6 +88,8 @@ What's in the test?
#. We have one PHP class `AddressTest`.
#. The class and file ends with `Test`.
#. Two public methods.
#. The methods are annotated with `@test`.
@ -194,6 +196,8 @@ Benefits of tests
#. Allow more secure refactoring.
#. Forces to write clean code.
Automate test execution
-----------------------