Skip to content

Commit

Permalink
Added setupbeforeclass in testcase
Browse files Browse the repository at this point in the history
  • Loading branch information
Fejan Malek committed Sep 8, 2024
1 parent 6ae2de2 commit eb860fd
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions exercises/practice/rotational-cipher/RotationalCipherTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@

class RotationalCipherTest extends PHPUnit\Framework\TestCase
{
public static function setUpBeforeClass(): void
{
require_once 'RotationalCipher.php';
}

/**
* uuid: 74e58a38-e484-43f1-9466-877a7515e10f
* @testdox Rotate a by 0, same output as input
Expand Down

0 comments on commit eb860fd

Please sign in to comment.