getName()."\n", FILE_APPEND); } function testA() { $this->LogPid(); static::assertTrue(true); } function testB() { $this->LogPid(); static::assertTrue(true); } /** * @dataProvider CProvider */ function testC($i) { $this->LogPid(); static::assertTrue(true); } function CProvider() { return [ [1], [1], [1], [1], ]; } }