Hi, I'm trying to use simpletest to compare two numeric strings, one from an array and one from an object property.
I've printed out the values and they are equal, however, the test always returns false. Can anyone help?
Here's the code:
$this->assertEqual(strval($this->createdforums[$randomforum]),
(strval($forum->getTitle)));
print_r($this->createdforums[$randomforum]);
print_r('<br />');
print_r($forum->getTitle());
The values that get printed out are:
1250833961 1250833961
Any advice appreciated. Thanks.