Skip to content

Commit b0cf6de

Browse files
committed
Add base test setups
1 parent eab318d commit b0cf6de

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

packages/framework/tests/Unit/InteractivePublishCommandHelperTest.php

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,16 @@
1313
*/
1414
class InteractivePublishCommandHelperTest extends UnitTestCase
1515
{
16-
//
16+
/** @var \Illuminate\Filesystem\Filesystem&\Mockery\MockInterface */
17+
protected $filesystem;
18+
19+
protected function setUp(): void
20+
{
21+
$this->filesystem = $this->mockFilesystemStrict();
22+
}
23+
24+
protected function tearDown(): void
25+
{
26+
$this->verifyMockeryExpectations();
27+
}
1728
}

0 commit comments

Comments
 (0)