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 <thomas.steur@gmail.com>2016-02-01 00:24:16 +0300
committerThomas Steur <thomas.steur@gmail.com>2016-02-01 00:24:16 +0300
commitc3e29b162a6aa93ec41044e42f229b18deeeaa31 (patch)
treecba23e22b1153961428799207a653945c7d66b3c /tests/PHPUnit/Framework/Mock
parentcfab30a42caeb822357998c69c4d28d2161b6233 (diff)
fix some tests as a file was missing
Diffstat (limited to 'tests/PHPUnit/Framework/Mock')
-rw-r--r--tests/PHPUnit/Framework/Mock/PiwikPro/Advertising.php20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/PHPUnit/Framework/Mock/PiwikPro/Advertising.php b/tests/PHPUnit/Framework/Mock/PiwikPro/Advertising.php
new file mode 100644
index 0000000000..b1de8c4899
--- /dev/null
+++ b/tests/PHPUnit/Framework/Mock/PiwikPro/Advertising.php
@@ -0,0 +1,20 @@
+<?php
+/**
+ * Piwik - free/libre analytics platform
+ *
+ * @link http://piwik.org
+ * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
+ */
+namespace Piwik\Tests\Framework\Mock\PiwikPro;
+
+class Advertising extends \Piwik\PiwikPro\Advertising
+{
+ public function __construct()
+ {
+ }
+
+ public function arePiwikProAdsEnabled()
+ {
+ return true;
+ }
+} \ No newline at end of file