Reduced amount of dead lines in tests

This commit is contained in:
Alejandro Celaya
2019-02-17 20:28:34 +01:00
parent 1bcd03b150
commit 687a1cc9c7
100 changed files with 481 additions and 938 deletions

View File

@@ -26,9 +26,7 @@ class QrCodeCacheMiddlewareTest extends TestCase
$this->middleware = new QrCodeCacheMiddleware($this->cache);
}
/**
* @test
*/
/** @test */
public function noCachedPathFallsBackToNextMiddleware()
{
$delegate = $this->prophesize(RequestHandlerInterface::class);
@@ -39,9 +37,7 @@ class QrCodeCacheMiddlewareTest extends TestCase
$this->assertTrue($this->cache->contains('/foo/bar'));
}
/**
* @test
*/
/** @test */
public function cachedPathReturnsCacheContent()
{
$isCalled = false;