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:
Diffstat (limited to 'tests/PHPUnit/Integration/TransitionsTest.php')
-rw-r--r--tests/PHPUnit/Integration/TransitionsTest.php58
1 files changed, 29 insertions, 29 deletions
diff --git a/tests/PHPUnit/Integration/TransitionsTest.php b/tests/PHPUnit/Integration/TransitionsTest.php
index 1d9f8375e2..0523feec4c 100644
--- a/tests/PHPUnit/Integration/TransitionsTest.php
+++ b/tests/PHPUnit/Integration/TransitionsTest.php
@@ -5,36 +5,36 @@
*/
class Test_Piwik_Integration_Transitions extends IntegrationTestCase
{
- public static $fixture = null; // initialized below class definition
-
- /**
- * @dataProvider getApiForTesting
- * @group Integration
- * @group Transitions
- */
- public function testApi($api, $params)
- {
- $this->runApiTests($api, $params);
- }
-
- public function getApiForTesting()
- {
- $return = array();
- $return[] = array('Transitions.getTransitionsForPageUrl', array(
- 'idSite' => self::$fixture->idSite,
- 'date' => self::$fixture->dateTime,
- 'otherRequestParameters' => array(
- 'pageUrl' => 'http://example.org/page/one.html',
- 'limitBeforeGrouping' => 2
- )
+ public static $fixture = null; // initialized below class definition
+
+ /**
+ * @dataProvider getApiForTesting
+ * @group Integration
+ * @group Transitions
+ */
+ public function testApi($api, $params)
+ {
+ $this->runApiTests($api, $params);
+ }
+
+ public function getApiForTesting()
+ {
+ $return = array();
+ $return[] = array('Transitions.getTransitionsForPageUrl', array(
+ 'idSite' => self::$fixture->idSite,
+ 'date' => self::$fixture->dateTime,
+ 'otherRequestParameters' => array(
+ 'pageUrl' => 'http://example.org/page/one.html',
+ 'limitBeforeGrouping' => 2
+ )
));
- return $return;
- }
-
- public function getOutputPrefix()
- {
- return 'Transitions';
- }
+ return $return;
+ }
+
+ public function getOutputPrefix()
+ {
+ return 'Transitions';
+ }
}
Test_Piwik_Integration_Transitions::$fixture = new Test_Piwik_Fixture_SomeVisitsManyPageviewsWithTransitions();