mirror of
https://github.com/danog/endtoend-test-psl.git
synced 2024-12-02 17:56:09 +01:00
46 lines
830 B
PHP
46 lines
830 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Psl\Tests\Iter;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class IteratorTest extends TestCase
|
|
{
|
|
public function testCurrent(): void
|
|
{
|
|
// TODO: write tests for Iterator::current
|
|
}
|
|
|
|
public function testNext(): void
|
|
{
|
|
// TODO: write tests for Iterator::next
|
|
}
|
|
|
|
public function testKey(): void
|
|
{
|
|
// TODO: write tests for Iterator::key
|
|
}
|
|
|
|
public function testValid(): void
|
|
{
|
|
// TODO: write tests for Iterator::valid
|
|
}
|
|
|
|
public function testRewind(): void
|
|
{
|
|
// TODO: write tests for Iterator::rewind
|
|
}
|
|
|
|
public function testSeek(): void
|
|
{
|
|
// TODO: write tests for Iterator::seek
|
|
}
|
|
|
|
public function testCount(): void
|
|
{
|
|
// TODO: write tests for Iterator::count
|
|
}
|
|
}
|