~ubuntu-branches/ubuntu/trusty/mediawiki/trusty

« back to all changes in this revision

Viewing changes to tests/selenium/suites/MediawikiCoreSmokeTestSuite.php

  • Committer: Package Import Robot
  • Author(s): Thorsten Glaser
  • Date: 2014-03-28 09:56:29 UTC
  • mfrom: (1.3.14)
  • Revision ID: package-import@ubuntu.com-20140328095629-1526y9tchdd507id
Tags: 1:1.19.14+dfsg-1
* New upstream security fix release (Closes: #742857):
  - (bug 62497) SECURITY: Add CSRF token on Special:ChangePassword
  - (bug 62467) Set a title for the context during import on the cli
* Use upstream-provided signing key bundle

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
/**
 
3
 * Stubs for now. We're going to start populating this test.
 
4
 */
 
5
class MediawikiCoreSmokeTestSuite extends SeleniumTestSuite
 
6
{
 
7
        public function setUp() {
 
8
                $this->setLoginBeforeTests( false );
 
9
                parent::setUp();
 
10
        } 
 
11
        public function addTests() {
 
12
                $testFiles = array(
 
13
                        'tests/selenium/suites/MediawikiCoreSmokeTestCase.php'
 
14
                );
 
15
                parent::addTestFiles( $testFiles );
 
16
        }
 
17
 
 
18
 
 
19
}