Completed
Branch master (c3d959)
by Alexandre
09:54
created

QueueServiceTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 8
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A testInstanceOf() 0 5 1
1
<?php
2
3
use Heri\Bundle\JobQueueBundle\Tests\TestCase;
4
5
class QueueServiceTest extends TestCase
6
{
7
    public function testInstanceOf()
8
    {
9
        $queue = $this->container->get('jobqueue');
10
        $this->assertInstanceOf('\Heri\Bundle\JobQueueBundle\Service\QueueService', $queue);
11
    }
12
}
13