NoneTest::testifDefined()


Source

File: vendor/phpoption/phpoption/tests/PhpOption/Tests/NoneTest.php

    public function testifDefined()
    {
        $this->assertNull($this->none->ifDefined(function() {
            throw new \LogicException('Should never be called.');
        }));
    }