Completed
Pull Request — master (#105)
by Nic
12:46
created

FlexSliderTest::testFlexSlider()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
eloc 1
nc 1
nop 0
1
<?php
2
3
namespace Dynamic\FlexSlider\Test;
4
5
use SilverStripe\Dev\FunctionalTest;
6
7
/**
8
 * Class FlexSliderTest
9
 * @package Dynamic\FlexSlider\Test
10
 */
11
class FlexSliderTest extends FunctionalTest
12
{
13
    protected static $fixture_file = 'flexslider/tests/FlexSliderTest.yml';
14
    protected static $disable_themes = true;
15
    protected static $use_draft_site = false;
16
17
    public function setUp()
18
    {
19
        parent::setUp();
20
21
        ini_set('display_errors', 1);
22
        ini_set('log_errors', 1);
23
        error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED);
24
    }
25
26
    public function logOut()
27
    {
28
        $this->session()->clear('loggedInAs');
29
        $this->session()->clear('logInWithPermission');
30
    }
31
32
    public function testFlexSlider()
33
    {
34
    }
35
}
36