MathPHP\SetTheory\SetOperationsTest::testNotDisjoint PHP Метод

testNotDisjoint() публичный Метод

public testNotDisjoint ( array $A, array $B )
$A array
$B array
    public function testNotDisjoint(array $A, array $B)
    {
        $setA = new Set($A);
        $setB = new Set($B);
        $this->assertFalse($setA->isDisjoint($setB));
    }