Skip to:
Content

BuddyPress.org

Ticket #7234: 7234.2.diff

File 7234.2.diff, 915 bytes (added by jdgrimes, 8 years ago)
  • tests/phpunit/includes/factory.php

     
    157157                $this->default_generation_definitions = array(
    158158                        'sender_id'  => get_current_user_id(),
    159159                        'thread_id'  => 0,
    160                         'recipients' => array(),
    161160                        'subject'    => new WP_UnitTest_Generator_Sequence( 'Message subject %s' ),
    162161                        'content'    => new WP_UnitTest_Generator_Sequence( 'Message content %s' ),
    163162                        'date_sent'  => bp_core_current_time(),
     
    169168                return $message_id;
    170169        }
    171170
    172         function update_object( $group_id, $fields ) {
     171        function update_object( $message_id, $fields ) {
    173172                // todo
    174173        }
    175174
    176         function get_object_by_id( $group_id ) {
    177                 // todo
     175        function get_object_by_id( $message_id ) {
     176                return new BP_Messages_Message( $message_id );
    178177        }
    179178}
    180179