1
0
mirror of https://github.com/php/php-src.git synced 2026-04-27 10:16:41 +02:00

Move SplFileObject tests into subfolder

This commit is contained in:
George Peter Banyard
2022-05-27 09:38:20 +01:00
parent 33fd554a33
commit fc799ecdbe
97 changed files with 12 additions and 12 deletions
@@ -0,0 +1,22 @@
--TEST--
SPL: SplFileObject::next basic
--CREDITS--
Ricardo Oedietram <ricardo@odracir.nl>
Erwin Poeze <erwin.poeze@gmail.com>
#PFZ June PHP TestFest 2012
--FILE--
<?php
//line 2
//line 3
//line 4
//line 5
$s = new SplFileObject(__FILE__);
echo $s->current();
$s->next();
echo $s->current();
?>
--EXPECT--
<?php
//line 2