silverstripe-fulltextsearch/tests/BatchedProcessorTest/BatchedProcessorTest_Index.php

16 lines
406 B
PHP
Raw Permalink Normal View History

2017-04-21 02:23:27 +02:00
<?php
namespace SilverStripe\FullTextSearch\Tests\BatchedProcessorTest;
use SilverStripe\Dev\TestOnly;
use SilverStripe\FullTextSearch\Search\Indexes\SearchIndex_Recording;
2017-04-21 02:23:27 +02:00
class BatchedProcessorTest_Index extends SearchIndex_Recording implements TestOnly
{
public function init()
{
$this->addClass(BatchedProcessorTest_Object::class);
2017-04-21 02:23:27 +02:00
$this->addFilterField('TestText');
}
}