We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f34c54b commit fa9f818Copy full SHA for fa9f818
tests/TypedArrayTest.php
@@ -40,7 +40,7 @@ public function allowedTypeProvider()
40
*
41
* @dataProvider allowedTypeProvider
42
*/
43
- public function testCreateInstance($type)
+ public function testNewInstance($type)
44
{
45
$this->assertInstanceOf(TypedArray::class, (new TypedArray($type)));
46
}
@@ -50,7 +50,7 @@ public function testCreateInstance($type)
50
51
* @expectedException InvalidArgumentException
52
53
- public function testCreateInstanceWithNotAllowedType()
+ public function testNewInstanceWithNotAllowedType()
54
55
$this->assertInstanceOf(TypedArray::class, (new TypedArray('notAllowedType')));
56
0 commit comments