Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Steur <tsteur@users.noreply.github.com>2014-11-14 00:56:06 +0300
committerThomas Steur <tsteur@users.noreply.github.com>2014-11-14 00:56:06 +0300
commitd3752762cee3dac030a889ff0d473cc6e00ecea7 (patch)
tree217d332a4b1347e552e9156c7d5ce7987a65d780 /plugins/ExamplePlugin
parent3e251680b7d137fc989662d54d7382a5899e4035 (diff)
to prevent calling parent::setUp/tearDown()
Diffstat (limited to 'plugins/ExamplePlugin')
-rw-r--r--plugins/ExamplePlugin/tests/Unit/SimpleTest.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/plugins/ExamplePlugin/tests/Unit/SimpleTest.php b/plugins/ExamplePlugin/tests/Unit/SimpleTest.php
index 4e0958d239..5551b4819d 100644
--- a/plugins/ExamplePlugin/tests/Unit/SimpleTest.php
+++ b/plugins/ExamplePlugin/tests/Unit/SimpleTest.php
@@ -17,6 +17,17 @@ use Piwik\Tests\Framework\TestCase\UnitTestCase;
*/
class SimpleTest extends UnitTestCase
{
+ public function setUp()
+ {
+ parent::setUp();
+ // set up here if needed
+ }
+
+ public function tearDown()
+ {
+ // tear down here if needed
+ parent::tearDown();
+ }
/**
* All your actual test methods should start with the name "test"