mirror of
https://github.com/danog/endtoend-test-psl.git
synced 2024-12-04 10:39:57 +01:00
151 lines
2.9 KiB
PHP
151 lines
2.9 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Psl\Tests\Collection;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class ImmMapTest extends TestCase
|
|
{
|
|
public function testItems(): void
|
|
{
|
|
// TODO: write tests for ImmMap::items
|
|
}
|
|
|
|
public function testIsEmpty(): void
|
|
{
|
|
// TODO: write tests for ImmMap::isEmpty
|
|
}
|
|
|
|
public function testCount(): void
|
|
{
|
|
// TODO: write tests for ImmMap::count
|
|
}
|
|
|
|
public function testToArray(): void
|
|
{
|
|
// TODO: write tests for ImmMap::toArray
|
|
}
|
|
|
|
public function testAt(): void
|
|
{
|
|
// TODO: write tests for ImmMap::at
|
|
}
|
|
|
|
public function testContainsKey(): void
|
|
{
|
|
// TODO: write tests for ImmMap::containsKey
|
|
}
|
|
|
|
public function testGet(): void
|
|
{
|
|
// TODO: write tests for ImmMap::get
|
|
}
|
|
|
|
public function testContains(): void
|
|
{
|
|
// TODO: write tests for ImmMap::contains
|
|
}
|
|
|
|
public function testValues(): void
|
|
{
|
|
// TODO: write tests for ImmMap::values
|
|
}
|
|
|
|
public function testKeys(): void
|
|
{
|
|
// TODO: write tests for ImmMap::keys
|
|
}
|
|
|
|
public function testMap(): void
|
|
{
|
|
// TODO: write tests for ImmMap::map
|
|
}
|
|
|
|
public function testMapWithKey(): void
|
|
{
|
|
// TODO: write tests for ImmMap::mapWithKey
|
|
}
|
|
|
|
public function testFilter(): void
|
|
{
|
|
// TODO: write tests for ImmMap::filter
|
|
}
|
|
|
|
public function testFilterWithKey(): void
|
|
{
|
|
// TODO: write tests for ImmMap::filterWithKey
|
|
}
|
|
|
|
public function testZip(): void
|
|
{
|
|
// TODO: write tests for ImmMap::zip
|
|
}
|
|
|
|
public function testTake(): void
|
|
{
|
|
// TODO: write tests for ImmMap::take
|
|
}
|
|
|
|
public function testTakeWhile(): void
|
|
{
|
|
// TODO: write tests for ImmMap::takeWhile
|
|
}
|
|
|
|
public function testDrop(): void
|
|
{
|
|
// TODO: write tests for ImmMap::drop
|
|
}
|
|
|
|
public function testDropWhile(): void
|
|
{
|
|
// TODO: write tests for ImmMap::dropWhile
|
|
}
|
|
|
|
public function testSlice(): void
|
|
{
|
|
// TODO: write tests for ImmMap::slice
|
|
}
|
|
|
|
public function testConcat(): void
|
|
{
|
|
// TODO: write tests for ImmMap::concat
|
|
}
|
|
|
|
public function testFirst(): void
|
|
{
|
|
// TODO: write tests for ImmMap::first
|
|
}
|
|
|
|
public function testFirstKey(): void
|
|
{
|
|
// TODO: write tests for ImmMap::firstKey
|
|
}
|
|
|
|
public function testLast(): void
|
|
{
|
|
// TODO: write tests for ImmMap::last
|
|
}
|
|
|
|
public function testLastKey(): void
|
|
{
|
|
// TODO: write tests for ImmMap::lastKey
|
|
}
|
|
|
|
public function testDifferenceByKey(): void
|
|
{
|
|
// TODO: write tests for ImmMap::differenceByKey
|
|
}
|
|
|
|
public function testMutable(): void
|
|
{
|
|
// TODO: write tests for ImmMap::mutable
|
|
}
|
|
|
|
public function testGetIterator(): void
|
|
{
|
|
// TODO: write tests for ImmMap::getIterator
|
|
}
|
|
}
|