aboutsummaryrefslogtreecommitdiffstats
path: root/tests/README.md
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2020-11-26 11:14:40 +0000
committerMario <mario@mariovavti.com>2020-11-26 11:14:40 +0000
commit5e1addc75e73e84254e820fc67dba057a8728db6 (patch)
tree23f2c27072f9642622de85b0838e72a8e14949cb /tests/README.md
parent138beeac41824394ad9a40e857ae9823e64e066c (diff)
downloadvolse-hubzilla-5e1addc75e73e84254e820fc67dba057a8728db6.tar.gz
volse-hubzilla-5e1addc75e73e84254e820fc67dba057a8728db6.tar.bz2
volse-hubzilla-5e1addc75e73e84254e820fc67dba057a8728db6.zip
revert folder renaming
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```