blob: a4468fd61a2ed7c4fd46fd38cb59c932f0cb3d8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
<?php
require_once dirname(__FILE__).'/../../phpunit.php';
Prado::using('System.Web.UI.TTemplateControl');
/**
* @package System.Web.UI
*/
class TTemplateControlTest extends PHPUnit_Framework_TestCase {
public function testSetAndGetTemplate() {
throw new PHPUnit_Framework_IncompleteTestError();
}
public function testGetIsSourceTemplateControl() {
throw new PHPUnit_Framework_IncompleteTestError();
}
public function testGetTemplateDirectory() {
throw new PHPUnit_Framework_IncompleteTestError();
}
public function testCreateChildControls() {
throw new PHPUnit_Framework_IncompleteTestError();
}
public function testRegisterContent() {
throw new PHPUnit_Framework_IncompleteTestError();
}
public function testRegisterContentPlaceHolder() {
throw new PHPUnit_Framework_IncompleteTestError();
}
public function testSetAndGetMasterClass() {
throw new PHPUnit_Framework_IncompleteTestError();
}
public function testGetMaster() {
throw new PHPUnit_Framework_IncompleteTestError();
}
public function testInjectContent() {
throw new PHPUnit_Framework_IncompleteTestError();
}
}
?>
|