- Timestamp:
- 10/18/2007 04:04:53 (13 months ago)
- Files:
-
- 1 modified
-
trunk/ext/php/phpunit-tests/TestDump.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ext/php/phpunit-tests/TestDump.php
r281 r282 66 66 $this->assertEquals($obj, syck_load(syck_dump($obj))); 67 67 } 68 69 public function testNumericStrings() 70 { 71 $obj = '73,123'; 72 $this->assertSame($obj, syck_load(syck_dump($obj))); 73 } 74 75 public function testLargeArrays() 76 { 77 $obj = range(1, 10000); 78 $this->assertSame($obj, syck_load(syck_dump($obj))); 79 } 68 80 }