PluginProbe
ReCrawler / 1.1.0
ReCrawler v1.1.0
1.1.0 1.0.2 1.0.1 1.0.0 0.3.4 0.3.3 0.1.1 0.1.2 0.1.2.1 0.1.2.2 0.1.3 0.1.4 0.1.5 0.2.0 0.3.0 0.3.1 0.3.2 trunk 0.1.0 0.1.0.1
recrawler / testo.php

testo.php in ReCrawler 1.1.0, at testo.php

24 lines 513 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Testo configuration.
4 *
5 * @package Mihdan\ReCrawler
6 */
7
8 declare(strict_types=1);
9
10 use Testo\Application\Config\ApplicationConfig;
11 use Testo\Application\Config\SuiteConfig;
12
13 // Те же константы плагина и заглушки WordPress, что использует PHPUnit.
14 require_once __DIR__ . '/tests/phpunit/bootstrap.php';
15
16 return new ApplicationConfig(
17 suites: [
18 new SuiteConfig(
19 name: 'Unit',
20 location: ['tests/Unit'],
21 ),
22 ],
23 );
24