1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-02-07 19:30:04 +02:00
joplin/run_tests.sh

17 lines
973 B
Bash
Raw Normal View History

2016-10-19 16:54:41 +01:00
#!/bin/bash
2017-06-04 00:21:15 +01:00
# Example to test just one method of a test unit:
# php phpunit-5.7.20.phar --filter testConflict ChangeTest tests/Model/ChangeTest.php --bootstrap vendor/autoload.php tests/Model/
2017-06-04 18:38:31 +01:00
echo '============================================================================================='
echo 'Testing controllers....'
echo '============================================================================================='
2017-06-08 21:54:32 +01:00
#php5.6 phpunit-5.7.20.phar --filter testDuplicateTitle tests/Controller/FoldersControllerTest.php --bootstrap vendor/autoload.php tests/Controller/
2017-06-04 18:38:31 +01:00
php5.6 phpunit-5.7.20.phar --bootstrap vendor/autoload.php tests/Controller/
2017-06-05 00:29:07 +01:00
# echo ""
2017-06-04 18:38:31 +01:00
2017-06-05 00:29:07 +01:00
# echo '============================================================================================='
# echo 'Testing models....'
# echo '============================================================================================='
# php5.6 phpunit-5.7.20.phar --bootstrap vendor/autoload.php tests/Model/