summaryrefslogtreecommitdiff
path: root/tests/unit/Web/THttpCookieTest.php
diff options
context:
space:
mode:
authorknut <>2006-05-16 19:03:46 +0000
committerknut <>2006-05-16 19:03:46 +0000
commit042aecd418ba8294e05b4be816abcc880c166af1 (patch)
tree282d914d31553e8bb8875e17ea8578efbc6c8224 /tests/unit/Web/THttpCookieTest.php
parentc6730f23829f07c404b65ed3d1f5c2a5808be2cf (diff)
Added unit test stubs for System.Web.* #168
Diffstat (limited to 'tests/unit/Web/THttpCookieTest.php')
-rw-r--r--tests/unit/Web/THttpCookieTest.php39
1 files changed, 39 insertions, 0 deletions
diff --git a/tests/unit/Web/THttpCookieTest.php b/tests/unit/Web/THttpCookieTest.php
new file mode 100644
index 00000000..ab7d4928
--- /dev/null
+++ b/tests/unit/Web/THttpCookieTest.php
@@ -0,0 +1,39 @@
+<?php
+require_once dirname(__FILE__).'/../phpunit2.php';
+
+Prado::using('System.Web.THttpRequest');
+
+/**
+ * @package System.Web
+ */
+class THttpCookieTest extends PHPUnit2_Framework_TestCase {
+
+ public function testConstruct() {
+ throw new PHPUnit2_Framework_IncompleteTestError();
+ }
+
+ public function testSetDomain() {
+ throw new PHPUnit2_Framework_IncompleteTestError();
+ }
+
+ public function testSetExpire() {
+ throw new PHPUnit2_Framework_IncompleteTestError();
+ }
+
+ public function testSetName() {
+ throw new PHPUnit2_Framework_IncompleteTestError();
+ }
+
+ public function testSetValue() {
+ throw new PHPUnit2_Framework_IncompleteTestError();
+ }
+
+ public function testSetPath() {
+ throw new PHPUnit2_Framework_IncompleteTestError();
+ }
+
+ public function testSetSecure() {
+ throw new PHPUnit2_Framework_IncompleteTestError();
+ }
+}
+?> \ No newline at end of file