ElementTabProviderTest   A
last analyzed

Complexity

Total Complexity 4

Size/Duplication

Total Lines 21
Duplicated Lines 0 %

Importance

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

4 Methods

Rating   Name   Duplication   Size   Complexity  
A setUp() 0 4 1
A testGettingTabsForElement() 0 3 1
A testSettingCache() 0 3 1
A testFlush() 0 3 1
1
<?php
2
3
namespace DNADesign\Elemental\Tests\Services;
4
5
use SilverStripe\Dev\SapphireTest;
6
7
class ElementTabProviderTest extends SapphireTest
8
{
9
    protected function setUp()
10
    {
11
        parent::setUp();
12
        $this->markTestIncomplete('Does not yet test anything, remains to be implemented');
13
    }
14
15
    public function testGettingTabsForElement()
16
    {
17
        $this->assertTrue(false);
18
    }
19
20
    public function testSettingCache()
21
    {
22
        $this->assertTrue(false);
23
    }
24
25
    public function testFlush()
26
    {
27
        $this->assertTrue(false);
28
    }
29
}
30