summaryrefslogtreecommitdiff
path: root/tests/unit/Web/TAssetManagerTest.php
blob: 49d421650424456029bcbdb9612b0438bc4bc9b9 (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__).'/../phpunit.php';

Prado::using('System.Web.TAssetManager');

/**
 * @package System.Web
 */
class TAssetManagerTest extends PHPUnit_Framework_TestCase {

  public function testInit() {
    throw new PHPUnit_Framework_IncompleteTestError();
  }

  public function testSetBasePath() {
    throw new PHPUnit_Framework_IncompleteTestError();
  }

  public function testSetBaseUrl() {
    throw new PHPUnit_Framework_IncompleteTestError();
  }

  public function testPublishFilePath() {
    throw new PHPUnit_Framework_IncompleteTestError();
  }

  public function testPublishTarFile() {
    throw new PHPUnit_Framework_IncompleteTestError();
  }
}
?>