aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorChristian Weiske <cweiske@cweiske.de>2011-06-08 07:21:33 +0200
committerChristian Weiske <cweiske@cweiske.de>2011-06-08 07:21:33 +0200
commit5009535d3438ecc338dacc8120fa143fd28c5628 (patch)
tree7bd6337af608aa9ebe35b1e9b594211fa4044790 /tests
parent39dfe3f1acf620eccb668d4f8d7451c1cef96ba5 (diff)
downloadsemanticscuttle-5009535d3438ecc338dacc8120fa143fd28c5628.tar.gz
semanticscuttle-5009535d3438ecc338dacc8120fa143fd28c5628.tar.bz2
docblocks for url and urlPart variables
Diffstat (limited to 'tests')
-rw-r--r--tests/TestBaseApi.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/TestBaseApi.php b/tests/TestBaseApi.php
index 7568147..50a2413 100644
--- a/tests/TestBaseApi.php
+++ b/tests/TestBaseApi.php
@@ -24,7 +24,20 @@ require_once 'HTTP/Request2.php';
*/
class TestBaseApi extends TestBase
{
+ /**
+ * Created from the configured host and the $urlPart.
+ * Should be used as base for all generated URLs
+ *
+ * @var string
+ */
protected $url;
+
+ /**
+ * Part of the URL behind the configured host.
+ * Needs to be overwritten in each derived test case class.
+ *
+ * @var string
+ */
protected $urlPart = null;
/**