summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorLester Caine ext:(%22) <lester@lsces.co.uk>2012-04-29 12:16:41 +0100
committerLester Caine ext:(%22) <lester@lsces.co.uk>2012-04-29 12:16:41 +0100
commit26322d2728a16fcbaa01727b3b705c521c4e3263 (patch)
treef5559c137fc5485b2435a65b6dbd2436f8e84702 /test
parent9114f32191a76f0f29c3b332bfb9a15caac3eb1f (diff)
downloadarticles-26322d2728a16fcbaa01727b3b705c521c4e3263.tar.gz
articles-26322d2728a16fcbaa01727b3b705c521c4e3263.tar.bz2
articles-26322d2728a16fcbaa01727b3b705c521c4e3263.zip
Strip extra white space
( simply ignoring is causing problems with comment merging )
Diffstat (limited to 'test')
-rw-r--r--test/TestTikiArticle.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/TestTikiArticle.php b/test/TestTikiArticle.php
index b7b1ad4..e5271bb 100644
--- a/test/TestTikiArticle.php
+++ b/test/TestTikiArticle.php
@@ -3,11 +3,11 @@ require_once('../../kernel/setup_inc.php');
require_once(ARTICLES_PKG_PATH.'BitArticle.php');
class TestBitArticle extends Test {
-
+
var $test;
var $id;
var $count;
-
+
function TestBitArticle()
{
$this->test = new BitArticle();
@@ -46,19 +46,19 @@ class TestBitArticle extends Test {
);
Assert::equalsTrue($this->test->store($newItemHash));
}
-
+
function testIsValidItem()
{
Assert::equalsTrue($this->test->isValid());
}
-
+
function testNullItem()
{
$this->id = $this->test->mArticleId;
$this->test = NULL;
Assert::equals($this->test, NULL);
}
-
+
function testLoadItem()
{
$this->test = new BitArticle($this->id);