b0y-101 Mini Shell


Current Path : E:/www/b-group.old/spfin/mainpay/Carbon/tests/Carbon/Exceptions/
File Upload :
Current File : E:/www/b-group.old/spfin/mainpay/Carbon/tests/Carbon/Exceptions/UnknownSetterExceptionTest.php

<?php

/**
 * This file is part of the Carbon package.
 *
 * (c) Brian Nesbitt <brian@nesbot.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Tests\Carbon\Exceptions;

use Carbon\Exceptions\UnknownSetterException;
use Tests\AbstractTestCase;

class UnknownSetterExceptionTest extends AbstractTestCase
{
    public function testUnknownSetterException(): void
    {
        $exception = new UnknownSetterException($setter = 'foo');

        $this->assertSame($setter, $exception->getSetter());

        $this->assertSame("Unknown setter 'foo'", $exception->getMessage());
        $this->assertSame(0, $exception->getCode());
        $this->assertNull($exception->getPrevious());
    }
}

Copyright © 2019 by b0y-101