Failed Conditions
Push — complex_graph_v3 ( fca431...2b444c )
by Donald
01:28
created

StoreTest::tearDown()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 3
rs 10
1
<?php namespace Integration\Chekote\NounStore\Store;
2
3
use Chekote\NounStore\Store;
4
use Integration\Chekote\NounStore\TestCase;
5
6
abstract class StoreTest extends TestCase
7
{
8
    /** @var Store */
9
    protected $store;
10
11
    /**
12
     * Sets up the environment before each test.
13
     */
14
    public function setUp()
15
    {
16
        $this->store = new Store();
17
    }
18
19
    /**
20
     * Tears down the environment after each test.
21
     */
22
    public function tearDown()
23
    {
24
        $this->store = null;
25
    }
26
}
27