From 776e4f9fa5933b17b3c873fc5d591b1ec9f0d07a Mon Sep 17 00:00:00 2001 From: Tykayn Date: Mon, 28 Aug 2023 22:33:49 +0200 Subject: [PATCH] add phpunit base conf --- .gitignore | 3 +++ phpunit.xml | 26 ++++++++++++++++++++++++++ {src/tests => tests}/index.php | 0 3 files changed, 29 insertions(+) create mode 100644 phpunit.xml rename {src/tests => tests}/index.php (100%) diff --git a/.gitignore b/.gitignore index 5a47792..ca7fd56 100755 --- a/.gitignore +++ b/.gitignore @@ -85,3 +85,6 @@ vendor/* /faq2_api/ /faq2_example/ /faq2_model/ + +# tests +.phpunit.cache diff --git a/phpunit.xml b/phpunit.xml new file mode 100644 index 0000000..21d3ddc --- /dev/null +++ b/phpunit.xml @@ -0,0 +1,26 @@ + + + + + tests + + + + + + src + + + diff --git a/src/tests/index.php b/tests/index.php similarity index 100% rename from src/tests/index.php rename to tests/index.php