Functional\Tests\WithTest::testWithNull PHP Method

testWithNull() public method

public testWithNull ( )
    public function testWithNull()
    {
        $this->assertNull(with(null, function () {
            throw new \Exception('Should not be called');
        }));
    }