blob: 1821f28b27c5f38d03f16d72dab61c6654912cea (
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
|
<?php
require_once dirname(__FILE__).'/../phpunit2.php';
Prado::using('System.Web.TAssetManager');
/**
* @package System.Web
*/
class TAssetManagerTest extends PHPUnit2_Framework_TestCase {
public function testInit() {
throw new PHPUnit2_Framework_IncompleteTestError();
}
public function testSetBasePath() {
throw new PHPUnit2_Framework_IncompleteTestError();
}
public function testSetBaseUrl() {
throw new PHPUnit2_Framework_IncompleteTestError();
}
public function testPublishFilePath() {
throw new PHPUnit2_Framework_IncompleteTestError();
}
public function testPublishTarFile() {
throw new PHPUnit2_Framework_IncompleteTestError();
}
}
?>
|