summaryrefslogtreecommitdiff
path: root/tests/unit/Web/THttpCookieCollectionTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/Web/THttpCookieCollectionTest.php')
-rw-r--r--tests/unit/Web/THttpCookieCollectionTest.php31
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/unit/Web/THttpCookieCollectionTest.php b/tests/unit/Web/THttpCookieCollectionTest.php
new file mode 100644
index 00000000..28b32a6e
--- /dev/null
+++ b/tests/unit/Web/THttpCookieCollectionTest.php
@@ -0,0 +1,31 @@
+<?php
+require_once dirname(__FILE__).'/../phpunit2.php';
+
+Prado::using('System.Web.THttpRequest');
+
+/**
+ * @package System.Web
+ */
+class THttpCookieCollectionTest extends PHPUnit2_Framework_TestCase {
+
+ public function testConstruct() {
+ throw new PHPUnit2_Framework_IncompleteTestError();
+ }
+
+ public function testInsertAt() {
+ throw new PHPUnit2_Framework_IncompleteTestError();
+ }
+
+ public function testRemoveAt() {
+ throw new PHPUnit2_Framework_IncompleteTestError();
+ }
+
+ public function testItemAt() {
+ throw new PHPUnit2_Framework_IncompleteTestError();
+ }
+
+ public function testFindCookieByName() {
+ throw new PHPUnit2_Framework_IncompleteTestError();
+ }
+}
+?> \ No newline at end of file