Changeset 14026 for trunk/tests/phpunit/testcases/testsuite/factory.php
- Timestamp:
- 09/27/2024 09:11:27 PM (15 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/testcases/testsuite/factory.php
r11737 r14026 3 3 /** 4 4 * @group testsuite 5 * @group factory 5 6 */ 6 class BP Tests_Testsuite_Factory extends BP_UnitTestCase {7 class BP_Tests_Testsuite_Factory extends BP_UnitTestCase { 7 8 /** 8 9 * @ticket BP7234 … … 44 45 $u2 = self::factory()->user->create(); 45 46 46 $f = self::factory()->friendship->create_and_get( array( 47 'initiator_user_id' => $u1, 48 'friend_user_id' => $u2, 49 ) ); 47 $f = self::factory()->friendship->create_and_get( 48 array( 49 'initiator_user_id' => $u1, 50 'friend_user_id' => $u2, 51 ) 52 ); 50 53 51 54 $this->assertSame( $u1, $f->initiator_user_id );
Note: See TracChangeset
for help on using the changeset viewer.