Completed
Push — master ( 600451...ae1e12 )
by
unknown
13s
created

ElementTabProviderTest   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 21
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 6
dl 0
loc 21
rs 10
c 0
b 0
f 0
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