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

ElementTabProviderTest::testFlush()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

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