From 2815369e4b25ecfdb30615fca5d4e9b0d1a42cd0 Mon Sep 17 00:00:00 2001 From: Daniel Bachhuber Date: Thu, 16 Nov 2023 17:54:49 +0100 Subject: [PATCH] Stub unit tests --- .gitignore | 1 + phpunit.xml.dist | 17 +++++++++++++++++ tests/PluginCommandTest.php | 11 +++++++++++ 3 files changed, 29 insertions(+) create mode 100644 phpunit.xml.dist create mode 100644 tests/PluginCommandTest.php diff --git a/.gitignore b/.gitignore index bcf211b32..199fcd916 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ composer.lock phpunit.xml phpcs.xml .phpcs.xml +.phpunit.result.cache \ No newline at end of file diff --git a/phpunit.xml.dist b/phpunit.xml.dist new file mode 100644 index 000000000..0522c8566 --- /dev/null +++ b/phpunit.xml.dist @@ -0,0 +1,17 @@ + + + + + tests + + + \ No newline at end of file diff --git a/tests/PluginCommandTest.php b/tests/PluginCommandTest.php new file mode 100644 index 000000000..46ca78a49 --- /dev/null +++ b/tests/PluginCommandTest.php @@ -0,0 +1,11 @@ +assertTrue( true ); + } +}