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