TestCase.php 307 Bytes
Newer Older
LONGMAN's avatar
LONGMAN committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<?php

namespace Tests\Unit;

class TestCase extends \PHPUnit_Framework_TestCase
{
    protected function skip64BitTest()
    {
        if (PHP_INT_SIZE == 4) {
            $this->markTestSkipped(
                'Skipping test that can run only on a 64-bit build of PHP.'
            );
        }
    }

}