Completed
Push — master ( f4b85b...244823 )
by Alexandre
02:30
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
<?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