Skip to content

Commit

Permalink
Add base test setups
Browse files Browse the repository at this point in the history
  • Loading branch information
caendesilva committed Dec 22, 2024
1 parent 9c01ea8 commit 9594fe0
Showing 1 changed file with 12 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,16 @@
*/
class InteractivePublishCommandHelperTest extends UnitTestCase
{
//
/** @var \Illuminate\Filesystem\Filesystem&\Mockery\MockInterface */
protected $filesystem;

protected function setUp(): void
{
$this->filesystem = $this->mockFilesystemStrict();
}

protected function tearDown(): void
{
$this->verifyMockeryExpectations();
}
}

0 comments on commit 9594fe0

Please sign in to comment.