Please add a Zend framework to the relevant issues

Source: Internet
Author: User
Tags rowcount db engines zend framework
Please add a Zend Framework problem
I'm using PHPUnit to test the model in the Zend project,
The model is like this:
PHP Code
  
   Class Application_model_admingroupmapper {    //TODO Impreve inserts here (more portable between another DB engines) 
   
    static function Assignmemberstogroup (        Application_model_admingroup & $group, array & $member _ids)    {        $inserts = Array ();        foreach ($member _ids as $id) {            $inserts [] = ' ('. $group->id. ', '. mysql_real_escape_string ($id). ') ';        }        $db = Zend_registry::get (' db ');        $res = $db->query (            ' INSERT IGNORE into Admin_group_has_member (admin_group_id, member_id) VALUES '.            Implode (', ', $inserts));        return $res->rowcount ();    }
   


The phpunit I wrote was this:
PHP Code
  
   Class Application_model_admingroupmapper {    //TODO Impreve inserts here (more portable between another DB engines) 
   
    static function Assignmemberstogroup (        Application_model_admingroup & $group, array & $member _ids)    {        $inserts = Array ();        foreach ($member _ids as $id) {            $inserts [] = ' ('. $group->id. ', '. mysql_real_escape_string ($id). ') ';        }        $db = Zend_registry::get (' db ');        $res = $db->query (            ' INSERT IGNORE into Admin_group_has_member (admin_group_id, member_id) VALUES '.            Implode (', ', $inserts));        return $res->rowcount ();    }
   


But when I run it, I run it in NetBeans, always prompting for no tests, why?

------Solution--------------------
Isn't the two-piece code you put on the same?
  • Related Article

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.