Symfony\Component\HttpFoundation\Tests\RequestTest::testIsNoCache PHP Method

testIsNoCache() public method

public testIsNoCache ( )
    public function testIsNoCache()
    {
        $request = new Request();
        $isNoCache = $request->isNoCache();

        $this->assertFalse($isNoCache);
    }
RequestTest