mirror of
https://github.com/ramsey/uuid.git
synced 2026-06-16 16:17:43 +03:00
18 lines
388 B
PHP
18 lines
388 B
PHP
<?php
|
|
namespace Rhumsaa\Uuid;
|
|
|
|
class TestCase extends \PHPUnit_Framework_TestCase
|
|
{
|
|
/**
|
|
* If the system is 32-bit, this will mark a test as skipped
|
|
*/
|
|
protected function skip64BitTest()
|
|
{
|
|
if (PHP_INT_SIZE == 4) {
|
|
$this->markTestSkipped(
|
|
'Skipping test that can run only on a 64-bit build of PHP.'
|
|
);
|
|
}
|
|
}
|
|
}
|