ImboUnitTest\Exception\RuntimeExceptionTest::testSetAndGetImboErrorCode PHP 메소드

testSetAndGetImboErrorCode() 공개 메소드

public testSetAndGetImboErrorCode ( $actual, $expected )
    public function testSetAndGetImboErrorCode($actual, $expected)
    {
        $exception = new RuntimeException();
        $this->assertSame($exception, $exception->setImboErrorCode($actual));
        $this->assertSame($expected, $exception->getImboErrorCode());
    }