Example #1
0
 function testGetInfosByUser()
 {
     $store = new VoiceInfoDB();
     $infos = $store->getInfosByUser(999);
     $this->assertSame(true, is_array($infos));
 }
Example #2
0
 function getInfos($userid)
 {
     $db = new VoiceInfoDB();
     return $db->getInfosByUser($userid);
 }