49 lines
		
	
	
		
			870 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			870 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace TomLingham\Tests\Searchy\Facades;
 | 
						|
 | 
						|
use GrahamCampbell\TestBenchCore\FacadeTrait;
 | 
						|
use TomLingham\Searchy\Facades\Searchy;
 | 
						|
use TomLingham\Searchy\SearchBuilder;
 | 
						|
use TomLingham\Tests\Searchy\AbstractTestCase;
 | 
						|
 | 
						|
/**
 | 
						|
 * This is the searchy facade test class.
 | 
						|
 *
 | 
						|
 * @author Vincent Klaiber <hello@vinkla.com>
 | 
						|
 */
 | 
						|
class SearchyTest extends AbstractTestCase
 | 
						|
{
 | 
						|
    use FacadeTrait;
 | 
						|
 | 
						|
    /**
 | 
						|
     * Get the facade accessor.
 | 
						|
     *
 | 
						|
     * @return string
 | 
						|
     */
 | 
						|
    protected function getFacadeAccessor()
 | 
						|
    {
 | 
						|
        return 'searchy';
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Get the facade class.
 | 
						|
     *
 | 
						|
     * @return string
 | 
						|
     */
 | 
						|
    protected function getFacadeClass()
 | 
						|
    {
 | 
						|
        return Searchy::class;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Get the facade root.
 | 
						|
     *
 | 
						|
     * @return string
 | 
						|
     */
 | 
						|
    protected function getFacadeRoot()
 | 
						|
    {
 | 
						|
        return SearchBuilder::class;
 | 
						|
    }
 | 
						|
}
 |