diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2008-08-15 01:29:47 +0200 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2008-08-15 01:29:47 +0200 |
commit | 370e83bb0dfd0c70de268c93bf07ad5ee0897192 (patch) | |
tree | 491674f4c242e4d6ba0d04eafa305174c35a3391 /t/inc/Parser.t | |
parent | f4debf0f12d0524d2b2427c55ea3f16b680fad97 (diff) |
Update auf 1.13.0
Diffstat (limited to 't/inc/Parser.t')
-rw-r--r-- | t/inc/Parser.t | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/t/inc/Parser.t b/t/inc/Parser.t new file mode 100644 index 00000000..9df21d9a --- /dev/null +++ b/t/inc/Parser.t @@ -0,0 +1,39 @@ +#!/usr/bin/env php +<?php + +require 't/Test.php'; +require 'maintenance/parserTests.inc'; + +error_reporting( E_ALL ^ E_NOTICE ); + +class ProveTestRecorder extends TestRecorder { + + function record( $name, $res ){} + function report(){} + function reportPercentage( $success, $total ){} +} + +class ProveParserTest extends ParserTest { + + function showSuccess( $desc ){ + pass( $desc ); + } + + function showFailure( $desc, $exp, $got ){ + _proclaim( false, $desc, false, $got, $exp ); + } + + function showRunFile( $path ){} +} + +$options = array( 'quick', 'quiet', 'compare' ); +$tester = new ProveParserTest(); +$tester->showProgress = false; +$tester->showFailure = false; +$tester->recorder = new ProveTestRecorder( $tester->term ); + +// Do not output the number of tests, if will be done automatically at the end + +$tester->runTestsFromFiles( $wgParserTestFiles ); + +/* vim: set filetype=php: */ |