endtoend-test-psl/tests/Psl/Collection/ImmVectorTest.php

141 lines
2.8 KiB
PHP
Raw Normal View History

2019-12-24 01:52:07 +01:00
<?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
}
}