Changeset 951 in tests
- Timestamp:
- 08/05/2012 11:24:35 PM (14 years ago)
- Location:
- trunk/tests
- Files:
-
- 5 edited
-
file.php (modified) (1 diff)
-
functions/listFilter.php (modified) (1 diff)
-
http/base.php (modified) (1 diff)
-
media.php (modified) (1 diff)
-
url.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/file.php
r909 r951 7 7 8 8 function setUp() { 9 parent::setUp(); 9 10 $this->dir = dirname(tempnam('/tmp', 'foo')); 10 11 -
trunk/tests/functions/listFilter.php
r909 r951 11 11 12 12 function setUp() { 13 parent::setUp(); 13 14 $this->array_list['foo'] = array( 'name' => 'foo', 'field1' => true, 'field2' => true, 'field3' => true, 'field4' => array( 'red' ) ); 14 15 $this->array_list['bar'] = array( 'name' => 'bar', 'field1' => true, 'field2' => true, 'field3' => false, 'field4' => array( 'green' ) ); -
trunk/tests/http/base.php
r904 r951 39 39 remove_filter( "use_{$t}_transport", '__return_false' ); 40 40 } 41 parent::tearDown(); 41 42 } 42 43 -
trunk/tests/media.php
r936 r951 8 8 9 9 function setUp() { 10 parent::setUp(); 10 11 $this->caption = 'A simple caption.'; 11 12 $this->html_content = <<<CAP -
trunk/tests/url.php
r904 r951 5 5 var $_old_server; 6 6 function setUp() { 7 parent::setUp(); 7 8 $this->_old_server = $_SERVER; 8 9 } … … 10 11 function tearDown() { 11 12 $_SERVER = $this->_old_server; 13 parent::tearDown(); 12 14 } 13 15
Note: See TracChangeset
for help on using the changeset viewer.