mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2024-11-05 13:07:52 +00:00
a348111e97
* tests: update to PHPUnit 6.0 with rector * fix namespaces on tests * composer + tests: use standard test namespace naming * update travis * resolve conflict * phpstan lvl 2 * phpstan lvl 3 * phpstan lvl 4 * phpstan lvl 5 * phpstan lvl 6 * phpstan lvl 7 * level max * resolve conflict * [cs] clean empty docs * composer: bump to PHPUnit 6.4 * cleanup * composer + travis: add phpstan * phpstan lvl 1 * composer: update dev deps * phpstan fixes * update Contributing with new tools * docs: link fixes, PHP version update * composer: drop php-cs-fixer, cs already handled by ecs * ecs: add old set rules * [cs] apply rest of rules
97 lines
2.7 KiB
PHP
97 lines
2.7 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Phpml\Tests\Math;
|
|
|
|
use Phpml\Math\Set;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class SetTest extends TestCase
|
|
{
|
|
public function testUnion(): void
|
|
{
|
|
$union = Set::union(new Set([3, 1]), new Set([3, 2, 2]));
|
|
|
|
$this->assertInstanceOf(Set::class, $union);
|
|
$this->assertEquals(new Set([1, 2, 3]), $union);
|
|
$this->assertEquals(3, $union->cardinality());
|
|
}
|
|
|
|
public function testIntersection(): void
|
|
{
|
|
$intersection = Set::intersection(new Set(['C', 'A']), new Set(['B', 'C']));
|
|
|
|
$this->assertInstanceOf(Set::class, $intersection);
|
|
$this->assertEquals(new Set(['C']), $intersection);
|
|
$this->assertEquals(1, $intersection->cardinality());
|
|
}
|
|
|
|
public function testDifference(): void
|
|
{
|
|
$difference = Set::difference(new Set(['C', 'A', 'B']), new Set(['A']));
|
|
|
|
$this->assertInstanceOf(Set::class, $difference);
|
|
$this->assertEquals(new Set(['B', 'C']), $difference);
|
|
$this->assertEquals(2, $difference->cardinality());
|
|
}
|
|
|
|
public function testPower(): void
|
|
{
|
|
$power = Set::power(new Set(['A', 'B']));
|
|
|
|
$this->assertInternalType('array', $power);
|
|
$this->assertEquals([new Set(), new Set(['A']), new Set(['B']), new Set(['A', 'B'])], $power);
|
|
$this->assertCount(4, $power);
|
|
}
|
|
|
|
public function testCartesian(): void
|
|
{
|
|
$cartesian = Set::cartesian(new Set(['A']), new Set([1, 2]));
|
|
|
|
$this->assertInternalType('array', $cartesian);
|
|
$this->assertEquals([new Set(['A', 1]), new Set(['A', 2])], $cartesian);
|
|
$this->assertCount(2, $cartesian);
|
|
}
|
|
|
|
public function testContains(): void
|
|
{
|
|
$set = new Set(['B', 'A', 2, 1]);
|
|
|
|
$this->assertTrue($set->contains('B'));
|
|
$this->assertTrue($set->containsAll(['A', 'B']));
|
|
|
|
$this->assertFalse($set->contains('C'));
|
|
$this->assertFalse($set->containsAll(['A', 'B', 'C']));
|
|
}
|
|
|
|
public function testRemove(): void
|
|
{
|
|
$set = new Set(['B', 'A', 2, 1]);
|
|
|
|
$this->assertEquals((new Set([1, 2, 2, 2, 'B']))->toArray(), $set->remove('A')->toArray());
|
|
}
|
|
|
|
public function testAdd(): void
|
|
{
|
|
$set = new Set(['B', 'A', 2, 1]);
|
|
$set->addAll(['foo', 'bar']);
|
|
$this->assertEquals(6, $set->cardinality());
|
|
}
|
|
|
|
public function testEmpty(): void
|
|
{
|
|
$set = new Set([1, 2]);
|
|
$set->removeAll([2, 1]);
|
|
$this->assertEquals(new Set(), $set);
|
|
$this->assertTrue($set->isEmpty());
|
|
}
|
|
|
|
public function testToArray(): void
|
|
{
|
|
$set = new Set([1, 2, 2, 3, 'A', false, '', 1.1, -1, -10, 'B']);
|
|
|
|
$this->assertEquals([-10, '', -1, 'A', 'B', 1, 1.1, 2, 3], $set->toArray());
|
|
}
|
|
}
|