summaryrefslogtreecommitdiff
path: root/tests/selenium/suites/PageDeleteTestSuite.php
blob: 256e35420d460c014e59065ff9ef7e6f9b7153b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

class PageDeleteTestSuite extends SeleniumTestSuite {
    public function setUp() {
        $this->setLoginBeforeTests( true );
        parent::setUp();
    }
    public function addTests() {
        $testFiles = array(
                'tests/selenium/suites/DeletePageAdminTestCase.php'
        );
        parent::addTestFiles( $testFiles );
    }


}