--TEST-- SPL: SplHeap and friends, throw: An iterator cannot be used with foreach by reference --CREDITS-- Thomas Koch #Hackday Webtuesday 2008-05-24 --FILE-- getMessage(),"\n"; } } // 1. SplMinHeap empty $heap = new SplMinHeap; testForException( $heap ); // 2. SplMinHeap non-empty $heap = new SplMinHeap; $heap->insert( 1 ); testForException( $heap ); // 3. SplMaxHeap empty $heap = new SplMaxHeap; testForException( $heap ); // 4. SplMaxHeap non-empty $heap = new SplMaxHeap; $heap->insert( 1 ); testForException( $heap ); // 5. SplPriorityQueue empty $heap = new SplPriorityQueue; testForException( $heap ); // 6. SplPriorityQueue non-empty $heap = new SplPriorityQueue; $heap->insert( 1, 2 ); testForException( $heap ); ?> --EXPECT-- An iterator cannot be used with foreach by reference An iterator cannot be used with foreach by reference An iterator cannot be used with foreach by reference An iterator cannot be used with foreach by reference An iterator cannot be used with foreach by reference An iterator cannot be used with foreach by reference