Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
12345 anikendra 1
<?php
2
/**
3
 * View Group Test for DebugKit
4
 *
5
 * PHP 5
6
 *
7
 * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
8
 * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
9
 *
10
 * Licensed under The MIT License
11
 * Redistributions of files must retain the above copyright notice.
12
 *
13
 * @copyright     Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
14
 * @link          http://cakephp.org CakePHP(tm) Project
15
 * @since         DebugKit 1.0
16
 * @license       http://www.opensource.org/licenses/mit-license.php MIT License
17
 */
18
 
19
require_once dirname(__FILE__) . DS . 'DebugkitGroupTestCase.php';
20
 
21
/**
22
 * DebugKitViewTestSuite class
23
 *
24
 * @since         DebugKit 1.0
25
 */
26
class AllDebugKitViewTest extends DebugkitGroupTestCase {
27
 
28
/**
29
 * Assemble Test Suite
30
 *
31
 * @return PHPUnit_Framework_TestSuite the instance of PHPUnit_Framework_TestSuite
32
 */
33
	public static function suite() {
34
		$suite = new self;
35
		$files = $suite->getTestFiles('View');
36
		$suite->addTestFiles($files);
37
 
38
		return $suite;
39
	}
40
}