init
This commit is contained in:
15
vendor/codeception/base/tests/data/php70Test
vendored
Normal file
15
vendor/codeception/base/tests/data/php70Test
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
class php70Test extends \PHPUnit\Framework\TestCase
|
||||
{
|
||||
public function testOfTest() {
|
||||
$a = new class('foo') {};
|
||||
$this->assertContains('class@anonymous', get_class($a));
|
||||
$b = new class () {};
|
||||
$this->assertContains('class@anonymous', get_class($b));
|
||||
}
|
||||
|
||||
function justTest() {}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user