Completed
Push — sf2.7 ( 18de34...b252b6 )
by Laurent
18:26
created

GroupRepositoryTest   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 24
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 2
c 1
b 0
f 0
lcom 1
cbo 2
dl 0
loc 24
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A setUp() 0 3 1
A tearDown() 0 3 1
1
<?php
2
3
namespace AppBundle\Entity;
4
5
/**
6
 * Generated by PHPUnit_SkeletonGenerator on 2016-02-15 at 17:17:31.
7
 */
8
class GroupRepositoryTest extends \PHPUnit_Framework_TestCase {
9
10
    /**
11
     * @var GroupRepository
12
     */
13
    protected $object;
14
15
    /**
16
     * Sets up the fixture, for example, opens a network connection.
17
     * This method is called before a test is executed.
18
     */
19
    protected function setUp() {
20
        $this->object = new GroupRepository;
0 ignored issues
show
Bug introduced by
The call to GroupRepository::__construct() misses some required arguments starting with $em.
Loading history...
21
    }
22
23
    /**
24
     * Tears down the fixture, for example, closes a network connection.
25
     * This method is called after a test is executed.
26
     */
27
    protected function tearDown() {
28
        
29
    }
30
31
}
32