Skip to content

Commit 65607c9

Browse files
committed
Delete useless tests
1 parent 38c6c13 commit 65607c9

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

tests/HelpersTest.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,6 @@ public function testMixedToStringWithDifferentTypes(): void {
6767

6868
$object = (object) ['name' => 'John', 'age' => 30];
6969
$this->assertSame(serialize($object), Helpers::mixedToString($object));
70-
71-
$resource = fopen('php://memory', 'rb');
72-
$this->assertSame((string) $resource, Helpers::mixedToString($resource));
73-
fclose($resource);
7470
}
7571

7672
/**

tests/TestCase.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ public static function keysProvider(): array {
1717
['string', 'phpCacheAdmin', 'phpCacheAdmin'],
1818
['int', 23, '23'],
1919
['float', 23.99, '23.99'],
20-
['bool', true, '1'],
21-
['null', null, ''],
2220
['gzcompress', gzcompress('test'), gzcompress('test')],
2321
['gzencode', gzencode('test'), gzencode('test')],
2422
['gzdeflate', gzdeflate('test'), gzdeflate('test')],

0 commit comments

Comments
 (0)