Skip to content

Commit

Permalink
Create ResponseTest.php
Browse files Browse the repository at this point in the history
  • Loading branch information
Mohammad-Alavi committed Feb 1, 2025
1 parent d8037f2 commit 03204e9
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions tests/Unit/Support/Facades/ResponseTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?php

use Apiato\Support\Facades\Response;

describe(class_basename(Response::class), function (): void {
it('should have the correct facade accessor', function (): void {
expect(Response::create())
->toBeInstanceOf(\Apiato\Http\Response::class);
});
})->covers(Response::class);

0 comments on commit 03204e9

Please sign in to comment.