MathPHP\SetTheory\SetOperationsTest::testIsProperSubset PHP Method

testIsProperSubset() public method

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