/** * @dataProvider matchProvider */ public function testMatch($compare, $result) { $ob = new Horde_Mail_Rfc822_Group('Testing', array('*****@*****.**', '*****@*****.**')); if ($result) { $this->assertTrue($ob->match($compare)); } else { $this->assertFalse($ob->match($compare)); } }