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