~quam-plures-core/quam-plures/hic-sunt-dracones

« back to all changes in this revision

Viewing changes to tests/install/index.php

  • Committer: yabs
  • Date: 2010-01-04 17:32:41 UTC
  • Revision ID: yabs@innervisions.org.uk-20100104173241-u1fx0xjelcvnio6m
distilling trunk to essentials

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?php
2
 
/**
3
 
 * This is the file to do all install tests.
4
 
 * @package tests
5
 
 */
6
 
 
7
 
/**
8
 
 * Load config
9
 
 */
10
 
require_once( dirname(__FILE__).'/../config.simpletest.php' );
11
 
 
12
 
 
13
 
/**
14
 
 * Our GroupTest
15
 
 */
16
 
$test = new EvoGroupTest( 'evo-Install Tests Suite');
17
 
 
18
 
$test->loadAllTests( dirname(__FILE__) );
19
 
 
20
 
$test->run( new HtmlReporter(), new TextReporter() );
21
 
#$test->run( new HtmlReporterShowPasses(), new TextReporter() );
22
 
?>