NoneTest::testFlatMap()


Source

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

    public function testFlatMap()
    {
        $this->assertSame($this->none, $this->none->flatMap(function() {
            throw new \LogicException('Should not be called.');
        }));
    }