InputTest.php 705 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. namespace Elgg\Http;
  3. use PHPUnit_Framework_TestCase as TestCase;
  4. class InputTest extends TestCase {
  5. public function testGetInputDefaultsToProvidedDefaultValue() {
  6. $this->markTestIncomplete();
  7. }
  8. public function testGetInputTriggersValidateInputHookIfAndOnlyIfFilteringIsEnabled() {
  9. $this->markTestIncomplete();
  10. }
  11. public function testGetInputCanBeOverriddenBySetInput() {
  12. $this->markTestIncomplete();
  13. }
  14. public function testGetInputChecksBothPostAndGetParams() {
  15. $this->markTestIncomplete();
  16. }
  17. public function testGetInputPushesInputContextDuringFiltering() {
  18. $this->markTestIncomplete();
  19. }
  20. public function testFilterTagsGlobal() {
  21. $this->markTestIncomplete();
  22. }
  23. }