expect_006.phpt 228 B

1234567891011121314
  1. --TEST--
  2. test looping assert (pass)
  3. --INI--
  4. zend.assertions=1
  5. assert.exception=1
  6. --FILE--
  7. <?php
  8. for($i=0; $i<100000; $i++) {
  9. assert ($i < 100000, "The universe should make sense");
  10. }
  11. var_dump(true);
  12. ?>
  13. --EXPECT--
  14. bool(true)