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