endtoend-test-psl/tests/Psl/Str/ToIntTest.php

32 lines
564 B
PHP
Raw Normal View History

2019-12-24 01:52:07 +01:00
<?php
declare(strict_types=1);
namespace Psl\Tests\Str;
use PHPUnit\Framework\TestCase;
2019-12-26 23:10:57 +01:00
use Psl\Str;
2019-12-24 01:52:07 +01:00
class ToIntTest extends TestCase
{
2019-12-26 23:10:57 +01:00
/**
* @dataProvider provideData
*/
public function testToInt(?int $expected, string $string): void
{
self::assertSame($expected, Str\to_int($string));
}
public function provideData(): array
{
return [
[null, 'hello'],
[1, '1'],
[525, '525'],
[0, '0'],
[null, '0e'],
[null, '12e1'],
];
}
2019-12-24 01:52:07 +01:00
}