Skip to content
Snippets Groups Projects
Commit 36340418 authored by Andreas Gohr's avatar Andreas Gohr
Browse files

fixed some test inheriting from the wrong parent

parent 7a7b77ef
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@
*
* most tests are in auth_password.test.php
*/
class PassHash_test extends PHPUnit_Framework_TestCase {
class PassHash_test extends DokuWikiTest {
function test_hmac(){
// known hashes taken from https://code.google.com/p/yii/issues/detail?id=1942
......
<?php
class auth_password_test extends PHPUnit_Framework_TestCase {
class auth_password_test extends DokuWikiTest {
// hashes for the password foo$method, using abcdefgh as salt
var $passes = array(
......
......@@ -3,7 +3,7 @@
require_once DOKU_INC . 'inc/parser/parser.php';
require_once DOKU_INC . 'inc/parser/handler.php';
abstract class TestOfDoku_Parser extends PHPUnit_Framework_TestCase {
abstract class TestOfDoku_Parser extends DokuWikiTest {
var $P;
var $H;
......
......@@ -5,7 +5,7 @@ require_once DOKU_INC . 'inc/parser/renderer.php';
/**
* Tests for Doku_Renderer::_resolveInterWiki()
*/
class Test_resolveInterwiki extends PHPUnit_Framework_TestCase {
class Test_resolveInterwiki extends DokuWikiTest {
function testDefaults() {
$Renderer = new Doku_Renderer();
......
......@@ -5,7 +5,7 @@ if(!defined('UTF8_NOMBSTRING')) define('UTF8_NOMBSTRING',1);
/**
* @group slow
*/
class utf8_romanize_test extends PHPUnit_Framework_TestCase {
class utf8_romanize_test extends DokuWikiTest {
/**
* Check Japanese romanization
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment