1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29:
<?php
namespace Peridot\Runner;
/**
* The SuiteLoaderInterface outlines a contract for including
* tests
*
* @package Peridot\Runner
*/
interface SuiteLoaderInterface
{
/**
* Search a path for a provided file or scan a
* directory structure for files matching the loader's
* conditions
*
* @param $path
* @return array
*/
public function getTests($path);
/**
* Load tests
*
* @param $path
*/
public function load($path);
}