Question

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.

Was it helpful?

Solution

You missed the brackets off getTitle in the assert. should be...

$this->assertEqual(strval($this->createdforums[$randomforum]),
(strval($forum->getTitle())));

OTHER TIPS

Maybe you have some spaces around the values. Try to trim() them before comparing.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top