Changeset 28493 for trunk/tests/phpunit/tests/basic.php
- Timestamp:
- 05/19/2014 01:16:16 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/basic.php
r28480 r28493 128 128 $this->assertEquals( 'bar', $basic->foo ); 129 129 } 130 131 function test_subclass_magic_getter() { 132 $basic = new Basic_Subclass(); 133 134 $this->assertEquals( 'bar', $basic->foo ); 135 } 136 137 function test_call_method() { 138 $basic = new Basic_Object(); 139 140 $this->assertEquals( 'maybe', $basic->callMe() ); 141 } 142 143 function test_subclass_call_method() { 144 $basic = new Basic_Subclass(); 145 146 $this->assertEquals( 'maybe', $basic->callMe() ); 147 } 130 148 }
Note: See TracChangeset
for help on using the changeset viewer.