<?php
namespace gnomephp\testsuite;
/**
* This controller tests all the components in GnomePHP.
*
*/
class TestGnome extends TestController{
public function setup(){
$this->addTestController(
// Add all the tests we got.
array(
'\gnomephp\mvc\router\TestRouter',
'\gnomephp\string\TestParsers',
'\gnomephp\mvc\MVCTests'
)
);
}
}