#!/usr/bin/env php
<?php
declare(strict_types = 1);

\passthru(
	\escapeshellarg(
		__DIR__ . '/../vendor/bin/tester'
	)
	. ' -C '
	. ' '
	. __DIR__ . '/../tests',
	$return
);

exit($return);
