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

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

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