1<?php
2
3namespace Foo\DataProviderIssue2922;
4
5use PHPUnit\Framework\TestCase;
6
7// the name of the class cannot match file name - if they match all is fine
8class SecondHelloWorldTest extends TestCase
9{
10    public function testSecond()
11    {
12        $this->assertTrue(true);
13    }
14}
15