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

QueueServiceTest::testInstanceOf()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %
Metric Value
dl 0
loc 5
rs 9.4285
cc 1
eloc 3
nc 1
nop 0
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