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