outside() public method

Dummy method; this search makes no sense for text fields
public outside ( mixed $from, mixed $to, boolean $include = false ) : string
$from mixed Ignored
$to mixed Ignored
$include boolean Ignored
return string Empty string
Beispiel #1
0
 /**
  * @group           TextFilter
  * @group           TextFilterOutside
  * @covers          FOF30\Model\DataModel\Filter\Text::outside
  */
 public function testOutside()
 {
     $filter = new Text(\JFactory::getDbo(), (object) array('name' => 'test', 'type' => 'varchar(10)'));
     $this->assertSame('', $filter->outside('', ''), 'Text::outside Should return an empty string');
 }