mirror of
https://github.com/silverstripe/silverstripe-fulltextsearch
synced 2024-10-22 14:05:29 +02:00
16 lines
393 B
PHP
16 lines
393 B
PHP
|
<?php
|
||
|
|
||
|
namespace SilverStripe\FullTextSearch\Tests\BatchedProcessorTest;
|
||
|
|
||
|
use SilverStripe\Dev\TestOnly;
|
||
|
use SilverStripe\FullTextSearch\Search\SearchIndex_Recording;
|
||
|
|
||
|
class BatchedProcessorTest_Index extends SearchIndex_Recording implements TestOnly
|
||
|
{
|
||
|
public function init()
|
||
|
{
|
||
|
$this->addClass('BatchedProcessorTest_Object');
|
||
|
$this->addFilterField('TestText');
|
||
|
}
|
||
|
}
|