Changeset 28480 for trunk/tests/phpunit/tests/basic.php
- Timestamp:
- 05/18/2014 09:14:13 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/basic.php
r28064 r28480 1 1 <?php 2 3 2 /** 4 3 * just make sure the test framework is working … … 123 122 unset( $empty_array[$page]['bar']['baz'] ); 124 123 } 124 125 function test_magic_getter() { 126 $basic = new Basic_Object(); 127 128 $this->assertEquals( 'bar', $basic->foo ); 129 } 125 130 }
Note: See TracChangeset
for help on using the changeset viewer.