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:
authorMatthieu Aubry <matt@piwik.org>2014-11-17 05:12:11 +0300
committerMatthieu Aubry <matt@piwik.org>2014-11-17 05:12:11 +0300
commitbeac44669ce722f56e48efecda11eaf80f6d7a7d (patch)
tree93985ffeb0cd163d0692bd05b09724bec221af5e /plugins
parent067b1e8653cda177a5c9ee0420044c00601864f0 (diff)
parentd3752762cee3dac030a889ff0d473cc6e00ecea7 (diff)
Merge pull request #6667 from piwik/6617
CliMulti: If process or output size is unexpected large, declare it as finished
Diffstat (limited to 'plugins')
-rw-r--r--plugins/ExamplePlugin/tests/Unit/SimpleTest.php15
1 files changed, 14 insertions, 1 deletions
diff --git a/plugins/ExamplePlugin/tests/Unit/SimpleTest.php b/plugins/ExamplePlugin/tests/Unit/SimpleTest.php
index 4b5341096f..5551b4819d 100644
--- a/plugins/ExamplePlugin/tests/Unit/SimpleTest.php
+++ b/plugins/ExamplePlugin/tests/Unit/SimpleTest.php
@@ -8,13 +8,26 @@
namespace Piwik\Plugins\ExamplePlugin\tests\Unit;
+use Piwik\Tests\Framework\TestCase\UnitTestCase;
+
/**
* @group ExamplePlugin
* @group SimpleTest
* @group Plugins
*/
-class SimpleTest extends \PHPUnit_Framework_TestCase
+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"