Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
Signed-off-by: Mior Muhammad Zaki <[email protected]>
  • Loading branch information
crynobone committed Dec 12, 2024
1 parent 1bf8267 commit 299559e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion tests/Foundation/Console/TerminatingConsoleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@
namespace Orchestra\Testbench\Tests\Foundation\Console;

use Orchestra\Testbench\Foundation\Console\TerminatingConsole;
use PHPUnit\Framework\Attributes\Test;
use PHPUnit\Framework\TestCase;

class TerminatingConsoleTest extends TestCase
{
/** @test */
#[Test]
public function it_can_handle_terminating_callbacks_on_terminal()
{
$this->assertFalse(isset($_SERVER['TerminatingConsole.before']));
Expand Down
5 changes: 3 additions & 2 deletions tests/Helpers/TransformRealpathToRelativeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
namespace Orchestra\Testbench\Tests\Helpers;

use Orchestra\Testbench\TestCase;
use PHPUnit\Framework\Attributes\Test;

use function Orchestra\Testbench\default_skeleton_path;
use function Orchestra\Testbench\join_paths;
Expand All @@ -11,7 +12,7 @@

class TransformRealpathToRelativeTest extends TestCase
{
/** @test */
#[Test]
public function it_can_use_transform_realpath_to_relative()
{
$this->assertSame('Testbench.php', transform_realpath_to_relative('Testbench.php'));
Expand All @@ -32,7 +33,7 @@ public function it_can_use_transform_realpath_to_relative()
);
}

/** @test */
#[Test]
public function it_can_use_transform_realpath_to_relative_using_custom_working_path()
{
$this->assertSame(
Expand Down

0 comments on commit 299559e

Please sign in to comment.