mm = new MM(array( 'foo' => 54, 'bar' => 'baz', )); } function tearDown() { unset($this->mm); } function testToStringDevel() { // __toString produces same output as print_r by default $this->assertIdentical($this->mm->__toString(), '
'.print_r($this->mm, TRUE).'
'); } }