1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<?php
namespace Automattic\WooCommerce\Blueprint\Tests;
use PHPUnit\Framework\TestCase as PHPUnitTestCase;
require_once __DIR__ . '/helpers.php';
/** * Class TestCase */ abstract class TestCase extends PHPUnitTestCase {
/** * Get the path to a fixture file. * * @param string $filename The filename. * * @return string The path to the fixture file. */ public function get_fixture_path( $filename ) { return __DIR__ . '/fixtures/' . $filename; } }
|