Passed
Pull Request — develop (#17)
by Denis
06:20 queued 01:37
created

ArtprimaQueryFilterBundleTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 6
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A testSearchProductsActionSuccess() 0 4 1
1
<?php
2
3
namespace App\Tests\Functional;
4
5
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
6
7
class ArtprimaQueryFilterBundleTest extends WebTestCase
8
{
9
    public function testSearchProductsActionSuccess()
10
    {
11
        $client = static::createClient();
0 ignored issues
show
Unused Code introduced by
The assignment to $client is dead and can be removed.
Loading history...
12
        self::assertTrue(true); // @TODO: implement me
13
    }
14
}
15