Passed
Push — 2.0 ( 6069a7...2a075c )
by Sébastien
05:45
created

BenchCaseAdapter   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 30
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 4
eloc 1
c 1
b 0
f 0
dl 0
loc 30
rs 10

4 Methods

Rating   Name   Duplication   Size   Complexity  
A setUp() 0 2 1
A setUpBeforeClass() 0 2 1
A tearDown() 0 2 1
A tearDownAfterClass() 0 2 1
1
<?php
2
3
/**
4
 * @BeforeMethods({"setUp"})
5
 * @AfterMethods({"tearDown"})
6
 * @BeforeClassMethods({"setUpBeforeClass"})
7
 * @AfterClassMethods({"tearDownAfterClass"})
8
 */
9
class BenchCaseAdapter
10
{
11
    /**
12
     * This method is called before the first test of this test class is run.
13
     */
14
    public static function setUpBeforeClass()
15
    {
16
    }
17
18
    /**
19
     * Sets up the fixture, for example, open a network connection.
20
     * This method is called before a test is executed.
21
     */
22
    public function setUp()
23
    {
24
    }
25
26
    /**
27
     * Tears down the fixture, for example, close a network connection.
28
     * This method is called after a test is executed.
29
     */
30
    public function tearDown()
31
    {
32
    }
33
34
    /**
35
     * This method is called after the last test of this test class is run.
36
     */
37
    public static function tearDownAfterClass()
38
    {
39
    }
40
}
41