endtoend-test-psl/tests/Psl/Collection/MapTest.php
2019-12-24 02:01:46 +01:00

186 lines
3.5 KiB
PHP

<?php
declare(strict_types=1);
namespace Psl\Tests\Collection;
use PHPUnit\Framework\TestCase;
class MapTest extends TestCase
{
public function testAdd(): void
{
// TODO: write tests for Map::add
}
public function testAddAll(): void
{
// TODO: write tests for Map::addAll
}
public function testClear(): void
{
// TODO: write tests for Map::clear
}
public function testItems(): void
{
// TODO: write tests for Map::items
}
public function testIsEmpty(): void
{
// TODO: write tests for Map::isEmpty
}
public function testCount(): void
{
// TODO: write tests for Map::count
}
public function testToArray(): void
{
// TODO: write tests for Map::toArray
}
public function testAt(): void
{
// TODO: write tests for Map::at
}
public function testContainsKey(): void
{
// TODO: write tests for Map::containsKey
}
public function testGet(): void
{
// TODO: write tests for Map::get
}
public function testContains(): void
{
// TODO: write tests for Map::contains
}
public function testValues(): void
{
// TODO: write tests for Map::values
}
public function testKeys(): void
{
// TODO: write tests for Map::keys
}
public function testMap(): void
{
// TODO: write tests for Map::map
}
public function testMapWithKey(): void
{
// TODO: write tests for Map::mapWithKey
}
public function testFilter(): void
{
// TODO: write tests for Map::filter
}
public function testFilterWithKey(): void
{
// TODO: write tests for Map::filterWithKey
}
public function testZip(): void
{
// TODO: write tests for Map::zip
}
public function testTake(): void
{
// TODO: write tests for Map::take
}
public function testTakeWhile(): void
{
// TODO: write tests for Map::takeWhile
}
public function testDrop(): void
{
// TODO: write tests for Map::drop
}
public function testDropWhile(): void
{
// TODO: write tests for Map::dropWhile
}
public function testSlice(): void
{
// TODO: write tests for Map::slice
}
public function testConcat(): void
{
// TODO: write tests for Map::concat
}
public function testFirst(): void
{
// TODO: write tests for Map::first
}
public function testFirstKey(): void
{
// TODO: write tests for Map::firstKey
}
public function testLast(): void
{
// TODO: write tests for Map::last
}
public function testLastKey(): void
{
// TODO: write tests for Map::lastKey
}
public function testRemove(): void
{
// TODO: write tests for Map::remove
}
public function testDifferenceByKey(): void
{
// TODO: write tests for Map::differenceByKey
}
public function testImmutable(): void
{
// TODO: write tests for Map::immutable
}
public function testSet(): void
{
// TODO: write tests for Map::set
}
public function testSetAll(): void
{
// TODO: write tests for Map::setAll
}
public function testRemoveKey(): void
{
// TODO: write tests for Map::removeKey
}
public function testGetIterator(): void
{
// TODO: write tests for Map::getIterator
}
}