Skip to content
This repository has been archived by the owner on Dec 3, 2021. It is now read-only.

Php unit set up tear down visibility #51

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/Unit/AdvancedEUComplianceTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@

class AdvancedEUComplianceTest extends UnitTestCase
{
public function setup()
protected function setup()
{

parent::setUpCommonStaticMocks();
}

public function teardown()
protected function teardown()
{
parent::tearDownCommonStaticMocks();
}
Expand Down