mirror of
https://github.com/danog/endtoend-test-psl.git
synced 2025-01-21 21:01:17 +01:00
remove @covers annotations
This commit is contained in:
parent
08bdf51436
commit
afb3f5fe6b
@ -8,9 +8,6 @@ use PHPUnit\Framework\TestCase;
|
||||
use Psl\Arr;
|
||||
use Psl\Exception;
|
||||
|
||||
/**
|
||||
* @covers \Psl\Arr\at
|
||||
*/
|
||||
class AtTest extends TestCase
|
||||
{
|
||||
/**
|
||||
|
@ -8,9 +8,6 @@ use PHPUnit\Framework\TestCase;
|
||||
use Psl\Arr;
|
||||
use Psl\Collection;
|
||||
|
||||
/**
|
||||
* @covers \Psl\Arr\concat
|
||||
*/
|
||||
class ConcatTest extends TestCase
|
||||
{
|
||||
/**
|
||||
|
@ -7,9 +7,6 @@ namespace Psl\Tests\Arr;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
use Psl\Arr;
|
||||
|
||||
/**
|
||||
* @covers \Psl\Arr\contains_key
|
||||
*/
|
||||
class ContainsKeyTest extends TestCase
|
||||
{
|
||||
/**
|
||||
|
@ -8,9 +8,6 @@ use PHPUnit\Framework\TestCase;
|
||||
use Psl\Arr;
|
||||
use Psl\Collection;
|
||||
|
||||
/**
|
||||
* @covers \Psl\Arr\contains
|
||||
*/
|
||||
class ContainsTest extends TestCase
|
||||
{
|
||||
/**
|
||||
|
@ -10,9 +10,6 @@ use Psl\Collection;
|
||||
use Psl\Exception;
|
||||
use Psl\Iter;
|
||||
|
||||
/**
|
||||
* @covers \Psl\Arr\count_values
|
||||
*/
|
||||
class CountValuesTest extends TestCase
|
||||
{
|
||||
/**
|
||||
|
@ -8,9 +8,6 @@ use PHPUnit\Framework\TestCase;
|
||||
use Psl\Arr;
|
||||
use Psl\Collection;
|
||||
|
||||
/**
|
||||
* @covers \Psl\Arr\equal
|
||||
*/
|
||||
class EqualTest extends TestCase
|
||||
{
|
||||
/**
|
||||
|
@ -7,9 +7,6 @@ namespace Psl\Tests\Arr;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
use Psl\Arr;
|
||||
|
||||
/**
|
||||
* @covers \Psl\Arr\fill
|
||||
*/
|
||||
class FillTest extends TestCase
|
||||
{
|
||||
/**
|
||||
|
@ -7,9 +7,6 @@ namespace Psl\Tests\Arr;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
use Psl\Arr;
|
||||
|
||||
/**
|
||||
* @covers \Psl\Arr\first_key
|
||||
*/
|
||||
class FirstKeyTest extends TestCase
|
||||
{
|
||||
/**
|
||||
|
@ -8,9 +8,6 @@ use PHPUnit\Framework\TestCase;
|
||||
use Psl\Arr;
|
||||
use Psl\Iter;
|
||||
|
||||
/**
|
||||
* @covers \Psl\Arr\first
|
||||
*/
|
||||
class FirstTest extends TestCase
|
||||
{
|
||||
/**
|
||||
|
@ -9,9 +9,6 @@ use Psl\Arr;
|
||||
use Psl\Exception;
|
||||
use Psl\Iter;
|
||||
|
||||
/**
|
||||
* @covers \Psl\Arr\firstx
|
||||
*/
|
||||
class FirstxTest extends TestCase
|
||||
{
|
||||
/**
|
||||
|
@ -8,9 +8,6 @@ use PHPUnit\Framework\TestCase;
|
||||
use Psl\Arr;
|
||||
use Psl\Collection;
|
||||
|
||||
/**
|
||||
* @covers \Psl\Arr\flatten
|
||||
*/
|
||||
class FlattenTest extends TestCase
|
||||
{
|
||||
/**
|
||||
|
@ -8,9 +8,6 @@ use PHPUnit\Framework\TestCase;
|
||||
use Psl\Arr;
|
||||
use Psl\Exception;
|
||||
|
||||
/**
|
||||
* @covers \Psl\Arr\flip
|
||||
*/
|
||||
class FlipTest extends TestCase
|
||||
{
|
||||
/**
|
||||
|
@ -11,9 +11,6 @@ use Psl\Exception;
|
||||
use Psl\Iter;
|
||||
use Psl\Str;
|
||||
|
||||
/**
|
||||
* @covers \Psl\Arr\group_by
|
||||
*/
|
||||
class GroupByTest extends TestCase
|
||||
{
|
||||
/**
|
||||
|
@ -7,9 +7,6 @@ namespace Psl\Tests\Arr;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
use Psl\Arr;
|
||||
|
||||
/**
|
||||
* @covers \Psl\Arr\idx
|
||||
*/
|
||||
class IdxTest extends TestCase
|
||||
{
|
||||
/**
|
||||
|
@ -7,9 +7,6 @@ namespace Psl\Tests\Arr;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
use Psl\Arr;
|
||||
|
||||
/**
|
||||
* @covers \Psl\Arr\is_array
|
||||
*/
|
||||
class IsArrayTest extends TestCase
|
||||
{
|
||||
/**
|
||||
|
@ -7,9 +7,6 @@ namespace Psl\Tests\Arr;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
use Psl\Arr;
|
||||
|
||||
/**
|
||||
* @covers \Psl\Arr\keys
|
||||
*/
|
||||
class KeysTest extends TestCase
|
||||
{
|
||||
public function testValues(): void
|
||||
|
@ -7,9 +7,6 @@ namespace Psl\Tests\Arr;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
use Psl\Arr;
|
||||
|
||||
/**
|
||||
* @covers \Psl\Arr\last_key
|
||||
*/
|
||||
class LastKeyTest extends TestCase
|
||||
{
|
||||
/**
|
||||
|
@ -8,9 +8,6 @@ use PHPUnit\Framework\TestCase;
|
||||
use Psl\Arr;
|
||||
use Psl\Iter;
|
||||
|
||||
/**
|
||||
* @covers \Psl\Arr\last
|
||||
*/
|
||||
class LastTest extends TestCase
|
||||
{
|
||||
/**
|
||||
|
@ -9,9 +9,6 @@ use Psl\Arr;
|
||||
use Psl\Exception;
|
||||
use Psl\Iter;
|
||||
|
||||
/**
|
||||
* @covers \Psl\Arr\lastx
|
||||
*/
|
||||
class LastxTest extends TestCase
|
||||
{
|
||||
/**
|
||||
|
@ -8,9 +8,6 @@ use PHPUnit\Framework\TestCase;
|
||||
use Psl\Arr;
|
||||
use Psl\Collection;
|
||||
|
||||
/**
|
||||
* @covers \Psl\Arr\merge
|
||||
*/
|
||||
class MergeTest extends TestCase
|
||||
{
|
||||
/**
|
||||
|
@ -9,9 +9,6 @@ use Psl\Arr;
|
||||
use Psl\Collection;
|
||||
use Psl\Str;
|
||||
|
||||
/**
|
||||
* @covers \Psl\Arr\partition
|
||||
*/
|
||||
class PartitionTest extends TestCase
|
||||
{
|
||||
/**
|
||||
|
@ -8,9 +8,6 @@ use PHPUnit\Framework\TestCase;
|
||||
use Psl\Arr;
|
||||
use Psl\Exception;
|
||||
|
||||
/**
|
||||
* @covers \Psl\Arr\random
|
||||
*/
|
||||
class RandomTest extends TestCase
|
||||
{
|
||||
public function testRandom(): void
|
||||
|
@ -7,9 +7,6 @@ namespace Psl\Tests\Arr;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
use Psl\Arr;
|
||||
|
||||
/**
|
||||
* @covers \Psl\Arr\select_keys
|
||||
*/
|
||||
class SelectKeysTest extends TestCase
|
||||
{
|
||||
/**
|
||||
|
@ -7,9 +7,6 @@ namespace Psl\Tests\Arr;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
use Psl\Arr;
|
||||
|
||||
/**
|
||||
* @covers \Psl\Arr\shuffle
|
||||
*/
|
||||
class ShuffleTest extends TestCase
|
||||
{
|
||||
public function testShuffle(): void
|
||||
|
@ -8,9 +8,6 @@ use PHPUnit\Framework\TestCase;
|
||||
use Psl\Arr;
|
||||
use Psl\Str;
|
||||
|
||||
/**
|
||||
* @covers \Psl\Arr\sort_by_key
|
||||
*/
|
||||
class SortByKeyTest extends TestCase
|
||||
{
|
||||
/**
|
||||
|
@ -9,9 +9,6 @@ use Psl\Arr;
|
||||
use Psl\Collection;
|
||||
use Psl\Str;
|
||||
|
||||
/**
|
||||
* @covers \Psl\Arr\sort_by
|
||||
*/
|
||||
class SortByTest extends TestCase
|
||||
{
|
||||
/**
|
||||
|
@ -9,9 +9,6 @@ use Psl\Arr;
|
||||
use Psl\Collection;
|
||||
use Psl\Iter;
|
||||
|
||||
/**
|
||||
* @covers \Psl\Arr\sort
|
||||
*/
|
||||
class SortTest extends TestCase
|
||||
{
|
||||
/**
|
||||
|
@ -9,9 +9,6 @@ use Psl\Arr;
|
||||
use Psl\Collection;
|
||||
use Psl\Str;
|
||||
|
||||
/**
|
||||
* @covers \Psl\Arr\sort_with_keys_by
|
||||
*/
|
||||
class SortWithKeysByTest extends TestCase
|
||||
{
|
||||
/**
|
||||
|
@ -9,9 +9,6 @@ use Psl\Arr;
|
||||
use Psl\Collection;
|
||||
use Psl\Iter;
|
||||
|
||||
/**
|
||||
* @covers \Psl\Arr\sort_with_keys
|
||||
*/
|
||||
class SortWithKeysTest extends TestCase
|
||||
{
|
||||
/**
|
||||
|
@ -8,9 +8,6 @@ use PHPUnit\Framework\TestCase;
|
||||
use Psl\Arr;
|
||||
use Psl\Str;
|
||||
|
||||
/**
|
||||
* @covers \Psl\Arr\unique_by
|
||||
*/
|
||||
class UniqueByTest extends TestCase
|
||||
{
|
||||
/**
|
||||
|
@ -8,9 +8,6 @@ use PHPUnit\Framework\TestCase;
|
||||
use Psl\Arr;
|
||||
use Psl\Collection;
|
||||
|
||||
/**
|
||||
* @covers \Psl\Arr\unique
|
||||
*/
|
||||
class UniqueTest extends TestCase
|
||||
{
|
||||
public function testUnique(): void
|
||||
|
@ -9,9 +9,6 @@ use Psl\Exception;
|
||||
use Psl\Random;
|
||||
use Psl\Str;
|
||||
|
||||
/**
|
||||
* @covers \Psl\Random\bytes
|
||||
*/
|
||||
class BytesTest extends TestCase
|
||||
{
|
||||
public function testBytes(): void
|
||||
|
@ -7,9 +7,6 @@ namespace Psl\Tests\Random;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
use Psl\Random;
|
||||
|
||||
/**
|
||||
* @covers \Psl\Random\float
|
||||
*/
|
||||
class FloatTest extends TestCase
|
||||
{
|
||||
public function testFloat(): void
|
||||
|
@ -9,9 +9,6 @@ use Psl\Exception;
|
||||
use Psl\Math;
|
||||
use Psl\Random;
|
||||
|
||||
/**
|
||||
* @covers \Psl\Random\int
|
||||
*/
|
||||
class IntTest extends TestCase
|
||||
{
|
||||
public function testInt(): void
|
||||
|
@ -9,9 +9,6 @@ use Psl\Random;
|
||||
use Psl\Exception;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
/**
|
||||
* @covers \Psl\Random\string
|
||||
*/
|
||||
class StringTest extends TestCase
|
||||
{
|
||||
public function testString(): void
|
||||
|
Loading…
x
Reference in New Issue
Block a user