diff --git a/app/bin/console b/app/bin/console new file mode 100644 index 0000000..84821a2 --- /dev/null +++ b/app/bin/console @@ -0,0 +1,3 @@ +#!/usr/bin/bash + +php -d auto_prepend_file=test.bootstrap.php -a diff --git a/app/bin/integration_tests b/app/bin/integration_tests new file mode 100644 index 0000000..e113cb6 --- /dev/null +++ b/app/bin/integration_tests @@ -0,0 +1,3 @@ +#!/usr/bin/bash + +bin/phpunit --testsuite acceptance $@ \ No newline at end of file diff --git a/app/bin/performance_tests b/app/bin/performance_tests new file mode 100644 index 0000000..211dd53 --- /dev/null +++ b/app/bin/performance_tests @@ -0,0 +1,3 @@ +#!/usr/bin/bash + +bin/phpunit --testsuite performance $@ \ No newline at end of file diff --git a/app/bin/unit_tests b/app/bin/unit_tests new file mode 100644 index 0000000..40dc00b --- /dev/null +++ b/app/bin/unit_tests @@ -0,0 +1,3 @@ +#!/usr/bin/bash + +./bin/phpunit --testsuite unit $@ \ No newline at end of file