diff options
Diffstat (limited to 'includes/composer/vendor/om/icalparser/tests/bootstrap.php')
-rw-r--r-- | includes/composer/vendor/om/icalparser/tests/bootstrap.php | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/includes/composer/vendor/om/icalparser/tests/bootstrap.php b/includes/composer/vendor/om/icalparser/tests/bootstrap.php new file mode 100644 index 0000000..7e6b798 --- /dev/null +++ b/includes/composer/vendor/om/icalparser/tests/bootstrap.php @@ -0,0 +1,21 @@ +<?php + +namespace tests; + +/** + * Copyright (c) 2004-2022 Roman Ožana (https://ozana.cz) + * + * @license BSD-3-Clause + * @author Roman Ožana <roman@ozana.cz> + */ + +require_once __DIR__ . '/../vendor/autoload.php'; + +use Closure; +use Tester\Environment; + +function test($description, Closure $fn): void { + printf("• %s%s%s", $description, PHP_EOL, $fn()); +} + +Environment::setup(); |