Tests: mark test without assertions as such

... to prevent it from being considered "risky" and being listed as "risky" below each test run.

```
There was 1 risky test:

1) phpDocumentor\Reflection\ModifyBackTraceSafeTest::testBackTraceModificationDoesNotImpactFunctionArguments
This test did not perform any assertions

/home/runner/work/ReflectionDocBlock/ReflectionDocBlock/tests/integration/ModifyBackTraceSafeTest.php:15
```
This commit is contained in:
jrfnl
2021-08-01 14:16:50 +02:00
parent 8719cc12e2
commit 36f4124fa4
@@ -12,6 +12,9 @@ use PHPUnit\Framework\TestCase;
*/ */
class ModifyBackTraceSafeTest extends TestCase class ModifyBackTraceSafeTest extends TestCase
{ {
/**
* @doesNotPerformAssertions
*/
public function testBackTraceModificationDoesNotImpactFunctionArguments() public function testBackTraceModificationDoesNotImpactFunctionArguments()
{ {
$traverser = new Traverser(); $traverser = new Traverser();