1<?php
2
3namespace Issue2972;
4
5use PHPUnit\Framework\TestCase;
6
7class Issue2972Test extends TestCase
8{
9    public function testHello()
10    {
11        $this->assertNotEmpty('Hello world!');
12    }
13}
14