aboutsummaryrefslogtreecommitdiffstats
path: root/tests/README.md
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2016-10-18 16:29:36 -0700
committerzotlabs <mike@macgirvin.com>2016-10-18 16:29:36 -0700
commitd55fcd055d878d29864bdf609f6e3f26e24837d0 (patch)
treed29747f3b2fba12d686084c91136a4dc7b9f52a9 /tests/README.md
parent9e3032e919e4778aff99c2fac7b1bb102aa6c934 (diff)
parentc2e299440380f04c55dc4cd77ea8e0ac6d09af53 (diff)
downloadvolse-hubzilla-d55fcd055d878d29864bdf609f6e3f26e24837d0.tar.gz
volse-hubzilla-d55fcd055d878d29864bdf609f6e3f26e24837d0.tar.bz2
volse-hubzilla-d55fcd055d878d29864bdf609f6e3f26e24837d0.zip
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into dev_merge
Diffstat (limited to 'tests/README.md')
-rw-r--r--tests/README.md25
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/README.md b/tests/README.md
new file mode 100644
index 000000000..395333159
--- /dev/null
+++ b/tests/README.md
@@ -0,0 +1,25 @@
+The folder tests/ contains resources for automated testing tools.
+
+Here you will find PHPUnit, Behat, etc. files to test the functionaly
+of Hubzilla. Right now it only contains some basic tests to see if feasable
+this can help improve the project.
+
+# Contents
+
+* unit/ PHPUnit tests
+These are unit tests to check the smallest parts, like single functions.
+It uses the tool PHPUnit https://phpunit.de/
+
+* acceptance/ functional/acceptance testing
+These are behavioral or so called functional/acceptance testing. They
+are used to test business logic. They are written in Gherkin and use
+the tool Behat http://behat.org/
+
+# How to use?
+You need the dev tools which are defined in the composer.json in the
+require-dev configuration.
+Run ```composer install``` without --no-dev to install these tools.
+
+To run unit tests run ```vendor/bin/phpunit tests/unit/```
+
+To run acceptance tests run ```vendor/bin/behat --config tests/acceptance/behat.yml```