Functional\Tests\EveryTest::test PHP Méthode

test() public méthode

public test ( )
    public function test()
    {
        $this->assertTrue(every($this->goodArray, [$this, 'functionalCallback']));
        $this->assertTrue(every($this->goodIterator, [$this, 'functionalCallback']));
        $this->assertFalse(every($this->badArray, [$this, 'functionalCallback']));
        $this->assertFalse(every($this->badIterator, [$this, 'functionalCallback']));
    }