diff options
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/app/DefaultUserTest.php | 3 | ||||
| -rw-r--r-- | tests/app/Services/UserServiceTest.php | 3 | ||||
| -rw-r--r-- | tests/app/TreeTest.php | 3 | ||||
| -rw-r--r-- | tests/app/UserTest.php | 3 |
4 files changed, 12 insertions, 0 deletions
diff --git a/tests/app/DefaultUserTest.php b/tests/app/DefaultUserTest.php index 1abbd2493f..1dae97ba1a 100644 --- a/tests/app/DefaultUserTest.php +++ b/tests/app/DefaultUserTest.php @@ -30,6 +30,9 @@ class DefaultUserTest extends TestCase { protected static bool $uses_database = true; + /** + * Things to run before every test. + */ protected function setUp(): void { parent::setUp(); diff --git a/tests/app/Services/UserServiceTest.php b/tests/app/Services/UserServiceTest.php index 6a92ad48bf..a0aebf0891 100644 --- a/tests/app/Services/UserServiceTest.php +++ b/tests/app/Services/UserServiceTest.php @@ -31,6 +31,9 @@ class UserServiceTest extends TestCase { protected static bool $uses_database = true; + /** + * Things to run before every test. + */ protected function setUp(): void { parent::setUp(); diff --git a/tests/app/TreeTest.php b/tests/app/TreeTest.php index 04dbd4bd51..77f94f6d99 100644 --- a/tests/app/TreeTest.php +++ b/tests/app/TreeTest.php @@ -40,6 +40,9 @@ class TreeTest extends TestCase { protected static bool $uses_database = true; + /** + * Things to run before every test. + */ protected function setUp(): void { parent::setUp(); diff --git a/tests/app/UserTest.php b/tests/app/UserTest.php index b5a8a656ab..68ae263159 100644 --- a/tests/app/UserTest.php +++ b/tests/app/UserTest.php @@ -31,6 +31,9 @@ class UserTest extends TestCase { protected static bool $uses_database = true; + /** + * Things to run before every test. + */ protected function setUp(): void { parent::setUp(); |
