public function testMaxDepthParameters() { $maxDepth = new MaxDepth(array('value' => 3)); $this->assertEquals(3, $maxDepth->getMaxDepth()); }
public function testMaxDepthParameters() { $validData = 3; $groups = new MaxDepth(array('value' => 3)); $this->assertEquals($validData, $groups->getMaxDepth()); }