There was an error while loading. Please reload this page.
Circular buffer
1 parent eaa992f commit f22e066Copy full SHA for f22e066
1 file changed
exercises/practice/circular-buffer/CircularBufferTest.php
@@ -3,13 +3,15 @@
3
declare(strict_types=1);
4
5
use PHPUnit\Framework\Attributes\TestDox;
6
-
7
-require_once 'CircularBuffer.php';
8
9
use PHPUnit\Framework\TestCase;
10
11
class CircularBufferTest extends TestCase
12
{
+ public static function setUpBeforeClass(): void
+ {
+ require_once 'CircularBuffer.php';
13
+ }
14
+
15
/**
16
* uuid: 28268ed4-4ff3-45f3-820e-895b44d53dfa
17
*/
0 commit comments