mm = new miniMVC\MM([ '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).'
'); } function testMMIsA() { $this->assertIsA($this->mm, 'ArrayObject'); } }