mirror of
https://github.com/ramsey/uuid.git
synced 2026-06-16 16:17:43 +03:00
15 lines
398 B
PHP
15 lines
398 B
PHP
<?php
|
|
namespace Rhumsaa\Uuid\Console;
|
|
|
|
class TestCase extends \PHPUnit_Framework_TestCase
|
|
{
|
|
protected function setUp()
|
|
{
|
|
if (!class_exists('Symfony\Component\Console\Application') || !class_exists('Moontoast\Math\BigNumber')) {
|
|
$this->markTestSkipped(
|
|
'symfony/console and moontoast/math are required to run these tests'
|
|
);
|
|
}
|
|
}
|
|
}
|