aboutsummaryrefslogtreecommitdiff
path: root/tests/Parsers/IntegerParserTest.php
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2020-07-15 15:59:38 +0300
committerValentin Popov <info@valentineus.link>2020-07-15 16:03:27 +0300
commit5062d35a0d3a6463ef03c8f83fe2f93ac9099a62 (patch)
tree39d00300efbf1b5bfe66e616dc0575a456f4e525 /tests/Parsers/IntegerParserTest.php
parent9682cb058c468329a3273607d2fcb172fdfd9835 (diff)
downloadphp-epg-service-5062d35a0d3a6463ef03c8f83fe2f93ac9099a62.tar.xz
php-epg-service-5062d35a0d3a6463ef03c8f83fe2f93ac9099a62.zip
Updated parsers
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'tests/Parsers/IntegerParserTest.php')
-rw-r--r--tests/Parsers/IntegerParserTest.php4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/Parsers/IntegerParserTest.php b/tests/Parsers/IntegerParserTest.php
index 7f5cce7..56c13ce 100644
--- a/tests/Parsers/IntegerParserTest.php
+++ b/tests/Parsers/IntegerParserTest.php
@@ -29,10 +29,6 @@ use PHPUnit\Framework\TestCase;
* @package Tests\Parsers
*/
final class IntegerParserTest extends TestCase {
- public function testInvalid(): void {
- self::assertNull(IntegerParser::get(null));
- }
-
public function testValid(): void {
$number = Faker::create()->numberBetween(100, 200);
self::assertEquals($number, IntegerParser::get((string) $number));