SplDoublyLinkedList_count.phpt 337 B

123456789101112
  1. --TEST--
  2. Check that SplDoublyLinkedList::count fails if parameter passed in
  3. --CREDITS--
  4. Rob Knight <themanhimself@robknight.org.uk> PHPNW Test Fest 2009
  5. --FILE--
  6. <?php
  7. $list = new SplDoublyLinkedList();
  8. $c = $list->count('foo');
  9. ?>
  10. --EXPECTF--
  11. Warning: SplDoublyLinkedList::count() expects exactly 0 parameters, 1 given in %s on line 4