Completed
Push — master ( 9de1be...100987 )
by David
8s
created

testClearCacheAnnotation()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
eloc 1
nc 1
nop 0
1
<?php
2
3
/*
4
 * This file is part of the FOSHttpCacheBundle package.
5
 *
6
 * (c) FriendsOfSymfony <http://friendsofsymfony.github.com/>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace FOS\HttpCacheBundle\Tests\Functional\Test;
13
14
use FOS\HttpCacheBundle\Test\ProxyTestCase;
15
16
class ProxyTestCaseAnnotationTest extends ProxyTestCase
17
{
18
    protected function setUp()
19
    {
20
        static::getContainer()->mock(
0 ignored issues
show
Bug introduced by
The method mock() does not seem to exist on object<Symfony\Component...ion\ContainerInterface>.

This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.

This is most likely a typographical error or the method has been renamed.

Loading history...
21
            'fos_http_cache.test.default_proxy_server',
22
            '\FOS\HttpCache\Test\Proxy\VarnishProxy'
23
        )
24
            ->shouldReceive('clear')->once()
25
        ;
26
27
        parent::setUp();
28
    }
29
30
    /**
31
     * @clearCache
32
     */
33
    public function testClearCacheAnnotation()
34
    {
35
    }
36
}
37