refinery29/test-util

View on GitHub
test/DataProvider/InvalidUuidNotNullTest.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

/*
 * Copyright (c) 2016 Refinery29, Inc.
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */

namespace Refinery29\Test\Util\Test\DataProvider;

use Assert\Assert;
use Refinery29\Test\Util\DataProvider\InvalidUuidNotNull;

final class InvalidUuidNotNullTest extends AbstractNotNullTestCase
{
    protected function className()
    {
        return InvalidUuidNotNull::class;
    }

    /**
     * @dataProvider \Refinery29\Test\Util\DataProvider\InvalidUuidNotNull::data()
     *
     * @param mixed $value
     */
    public function testIsNotUuid($value)
    {
        $this->expectException(\InvalidArgumentException::class);

        Assert::that($value)
            ->string()
            ->uuid();
    }
}