aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornodiscc <nodiscc@gmail.com>2020-01-19 13:09:23 +0100
committernodiscc <nodiscc@gmail.com>2020-01-19 13:09:23 +0100
commit7a7a5237822207171e535fc00de253fbfd25c5a2 (patch)
tree957941ad931929438d85772cf4609d6949673831
parent6fa3c87d32dd16655ffb37865e1585b2b35154cd (diff)
downloadShaarli-7a7a5237822207171e535fc00de253fbfd25c5a2.tar.gz
Shaarli-7a7a5237822207171e535fc00de253fbfd25c5a2.tar.zst
Shaarli-7a7a5237822207171e535fc00de253fbfd25c5a2.zip
doc: simplify unit tests documentation
-rw-r--r--doc/md/Unit-tests.md75
1 files changed, 4 insertions, 71 deletions
diff --git a/doc/md/Unit-tests.md b/doc/md/Unit-tests.md
index 74920ac1..da993109 100644
--- a/doc/md/Unit-tests.md
+++ b/doc/md/Unit-tests.md
@@ -22,12 +22,11 @@ $ composer update
22 22
23See http://xdebug.org/docs/install 23See http://xdebug.org/docs/install
24 24
25For Debian-based distros:
26```bash 25```bash
26# for Debian-based distributions
27$ aptitude install php5-xdebug 27$ aptitude install php5-xdebug
28``` 28
29For ArchLinux: 29# for ArchLinux:
30```bash
31$ pacman -S xdebug 30$ pacman -S xdebug
32``` 31```
33 32
@@ -38,74 +37,8 @@ zend_extension=xdebug.so
38 37
39#### Run unit tests 38#### Run unit tests
40 39
41Successful test suite: 40Run `make test` and ensure tests return `OK`. If tests return failures, refer to PHPUnit messages and fix your code/tests accordingly.
42```bash
43$ make test
44
45-------
46PHPUNIT
47-------
48PHPUnit 4.6.9 by Sebastian Bergmann and contributors.
49
50Configuration read from /home/virtualtam/public_html/shaarli/phpunit.xml
51
52....................................
53
54Time: 759 ms, Memory: 8.25Mb
55
56OK (36 tests, 65 assertions)
57```
58
59Test suite with failures and errors:
60```bash
61$ make test
62-------
63PHPUNIT
64-------
65PHPUnit 4.6.9 by Sebastian Bergmann and contributors.
66
67Configuration read from /home/virtualtam/public_html/shaarli/phpunit.xml
68 41
69E..FF...............................
70
71Time: 802 ms, Memory: 8.25Mb
72
73There was 1 error:
74
751) LinkDBTest::testConstructLoggedIn
76Missing argument 2 for LinkDB::__construct(), called in /home/virtualtam/public_html/shaarli/tests/Link\
77DBTest.php on line 79 and defined
78
79/home/virtualtam/public_html/shaarli/application/LinkDB.php:58
80/home/virtualtam/public_html/shaarli/tests/LinkDBTest.php:79
81
82--
83
84There were 2 failures:
85
861) LinkDBTest::testCheckDBNew
87Failed asserting that two strings are equal.
88--- Expected
89+++ Actual
90@@ @@
91-'e3edea8ea7bb50be4bcb404df53fbb4546a7156e'
92+'85eab0c610d4f68025f6ed6e6b6b5fabd4b55834'
93
94/home/virtualtam/public_html/shaarli/tests/LinkDBTest.php:121
95
962) LinkDBTest::testCheckDBLoad
97Failed asserting that two strings are equal.
98--- Expected
99+++ Actual
100@@ @@
101-'e3edea8ea7bb50be4bcb404df53fbb4546a7156e'
102+'85eab0c610d4f68025f6ed6e6b6b5fabd4b55834'
103
104/home/virtualtam/public_html/shaarli/tests/LinkDBTest.php:133
105
106FAILURES!
107Tests: 36, Assertions: 63, Errors: 1, Failures: 2.
108```
109 42
110#### Test results and coverage 43#### Test results and coverage
111 44