SomeTest::testReject()


Source

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

    public function testReject()
    {
        $some = new Some('foo');

        $this->assertSame($some, $some->reject(null));
        $this->assertSame($some, $some->reject(true));
        $this->assertInstanceOf('PhpOption\None', $some->reject('foo'));
    }