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

BenchCaseAdapter::tearDown()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 0
c 1
b 0
f 0
dl 0
loc 2
rs 10
cc 1
nc 1
nop 0
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