[ create a new paste ] login | about

Project: PHPImpact
Link: http://phpimpact.codepad.org/iDFGH0nf    [ raw code | fork ]

fedecarg - PHP, pasted on Dec 27:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
require_once dirname(__FILE__) . '/ExampleControllerTest.php';

class ControllersAllTests
{
    public static function main()
    {
        PHPUnit_TextUI_TestRunner::run(self::suite());
    }

    public static function suite()
    {
        $suite = new PHPUnit_Framework_TestSuite('My Application - Controllers');
        $suite->addTestSuite('ExampleControllerTestCase');
        return $suite;
    }
}


Create a new paste based on this one


Comments: