summaryrefslogtreecommitdiff
path: root/includes/composer/vendor/om/icalparser/tests/bootstrap.php
blob: 7e6b7983b102f02678f16fe59652f36cb8403b2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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();