MathPHP\SetTheory\SetOperationsTest::testIsSubset PHP Method

testIsSubset() public method

public testIsSubset ( array $A, array $B )
$A array
$B array
    public function testIsSubset(array $A, array $B)
    {
        $setA = new Set($A);
        $setB = new Set($B);
        $this->assertTrue($setA->isSubset($setB));
    }