Parkour\Functor\GreaterTest::testInvoke PHP Method

testInvoke() public method

public testInvoke ( )
    public function testInvoke()
    {
        $Greater = new Greater();
        $this->assertTrue($Greater(4, 2));
        $this->assertFalse($Greater(2, 2));
    }