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:
authormattab <matthieu.aubry@gmail.com>2013-10-15 06:20:20 +0400
committermattab <matthieu.aubry@gmail.com>2013-10-15 06:20:20 +0400
commit623b63e72d3494969e1284d7fc78da92b18725c3 (patch)
treeb1cb65d2984a219cb8bf9b41b9608d644563f3bf /tests/PHPUnit/Core/ScheduledTime
parent597ba5665a9c2b2d4a5bf0bfacc7476086844443 (diff)
Cleaning up @group comments on tests to keep only 4 groups: Core, Integration, Plugins and UI
Diffstat (limited to 'tests/PHPUnit/Core/ScheduledTime')
-rw-r--r--tests/PHPUnit/Core/ScheduledTime/DailyTest.php10
-rw-r--r--tests/PHPUnit/Core/ScheduledTime/HourlyTest.php6
-rw-r--r--tests/PHPUnit/Core/ScheduledTime/MonthlyTest.php20
-rw-r--r--tests/PHPUnit/Core/ScheduledTime/WeeklyTest.php14
4 files changed, 4 insertions, 46 deletions
diff --git a/tests/PHPUnit/Core/ScheduledTime/DailyTest.php b/tests/PHPUnit/Core/ScheduledTime/DailyTest.php
index 501e1adb34..ae1dce887b 100644
--- a/tests/PHPUnit/Core/ScheduledTime/DailyTest.php
+++ b/tests/PHPUnit/Core/ScheduledTime/DailyTest.php
@@ -28,8 +28,6 @@ class ScheduledTime_DailyTest extends PHPUnit_Framework_TestCase
/**
* Tests invalid call to setHour on Daily
* @group Core
- * @group ScheduledTime
- * @group ScheduledTime_Daily
*/
public function testSetHourScheduledTimeDailyNegative()
{
@@ -46,8 +44,6 @@ class ScheduledTime_DailyTest extends PHPUnit_Framework_TestCase
/**
* Tests invalid call to setHour on Daily
* @group Core
- * @group ScheduledTime
- * @group ScheduledTime_Daily
*/
public function testSetHourScheduledTimeDailyOver24()
{
@@ -63,8 +59,6 @@ class ScheduledTime_DailyTest extends PHPUnit_Framework_TestCase
/**
* Tests forbidden call to setDay on Daily
* @group Core
- * @group ScheduledTime
- * @group ScheduledTime_Daily
*/
public function testSetDayScheduledTimeDaily()
{
@@ -80,8 +74,6 @@ class ScheduledTime_DailyTest extends PHPUnit_Framework_TestCase
/**
* Tests getRescheduledTime on Daily with unspecified hour
* @group Core
- * @group ScheduledTime
- * @group ScheduledTime_Daily
*/
public function testGetRescheduledTimeDailyUnspecifiedHour()
{
@@ -105,8 +97,6 @@ class ScheduledTime_DailyTest extends PHPUnit_Framework_TestCase
/**
* Tests getRescheduledTime on Daily with specified hour
* @group Core
- * @group ScheduledTime
- * @group ScheduledTime_Daily
*/
public function testGetRescheduledTimeDailySpecifiedHour()
{
diff --git a/tests/PHPUnit/Core/ScheduledTime/HourlyTest.php b/tests/PHPUnit/Core/ScheduledTime/HourlyTest.php
index 43b422739f..2b621bff2b 100644
--- a/tests/PHPUnit/Core/ScheduledTime/HourlyTest.php
+++ b/tests/PHPUnit/Core/ScheduledTime/HourlyTest.php
@@ -24,8 +24,6 @@ class ScheduledTime_HourlyTest extends PHPUnit_Framework_TestCase
/**
* Tests forbidden call to setHour on Hourly
* @group Core
- * @group ScheduledTime
- * @group ScheduledTime_Hourly
*/
public function testSetHourScheduledTimeHourly()
{
@@ -41,8 +39,6 @@ class ScheduledTime_HourlyTest extends PHPUnit_Framework_TestCase
/**
* Tests forbidden call to setDay on Hourly
* @group Core
- * @group ScheduledTime
- * @group ScheduledTime_Hourly
*/
public function testSetDayScheduledTimeHourly()
{
@@ -58,8 +54,6 @@ class ScheduledTime_HourlyTest extends PHPUnit_Framework_TestCase
/**
* Tests getRescheduledTime on Hourly
* @group Core
- * @group ScheduledTime
- * @group ScheduledTime_Hourly
*/
public function testGetRescheduledTimeHourly()
{
diff --git a/tests/PHPUnit/Core/ScheduledTime/MonthlyTest.php b/tests/PHPUnit/Core/ScheduledTime/MonthlyTest.php
index 00f61917df..c13a7d825d 100644
--- a/tests/PHPUnit/Core/ScheduledTime/MonthlyTest.php
+++ b/tests/PHPUnit/Core/ScheduledTime/MonthlyTest.php
@@ -36,8 +36,6 @@ class ScheduledTime_MonthlyTest extends PHPUnit_Framework_TestCase
/**
* Tests invalid call to setHour on Monthly
* @group Core
- * @group ScheduledTime
- * @group ScheduledTime_Monthly
*/
public function testSetHourScheduledTimeMonthlyNegative()
{
@@ -53,8 +51,6 @@ class ScheduledTime_MonthlyTest extends PHPUnit_Framework_TestCase
/**
* Tests invalid call to setHour on Monthly
* @group Core
- * @group ScheduledTime
- * @group ScheduledTime_Monthly
*/
public function testSetHourScheduledTimMonthlyOver24()
{
@@ -70,8 +66,6 @@ class ScheduledTime_MonthlyTest extends PHPUnit_Framework_TestCase
/**
* Tests invalid call to setDay on Monthly
* @group Core
- * @group ScheduledTime
- * @group ScheduledTime_Monthly
*/
public function testSetDayScheduledTimeMonthlyDay0()
{
@@ -87,8 +81,6 @@ class ScheduledTime_MonthlyTest extends PHPUnit_Framework_TestCase
/**
* Tests invalid call to setDay on Monthly
* @group Core
- * @group ScheduledTime
- * @group ScheduledTime_Monthly
*/
public function testSetDayScheduledTimeMonthlyOver31()
{
@@ -104,8 +96,6 @@ class ScheduledTime_MonthlyTest extends PHPUnit_Framework_TestCase
/**
* Tests getRescheduledTime on Monthly with unspecified hour and unspecified day
* @group Core
- * @group ScheduledTime
- * @group ScheduledTime_Monthly
*/
public function testGetRescheduledTimeMonthlyUnspecifiedHourUnspecifiedDay()
{
@@ -148,8 +138,8 @@ class ScheduledTime_MonthlyTest extends PHPUnit_Framework_TestCase
/**
* Tests getRescheduledTime on Monthly with unspecified hour and specified day
* @group Core
- * @group ScheduledTime
- * @group ScheduledTime_Monthly
+ *
+ * _Monthly
*
* @dataProvider getSpecifiedDayData
*/
@@ -223,8 +213,6 @@ class ScheduledTime_MonthlyTest extends PHPUnit_Framework_TestCase
/**
* @group Core
- * @group ScheduledTime
- * @group ScheduledTime_Monthly
*/
public function testMonthlyDayOfWeek()
{
@@ -241,8 +229,8 @@ class ScheduledTime_MonthlyTest extends PHPUnit_Framework_TestCase
/**
* @group Core
- * @group ScheduledTime
- * @group ScheduledTime_Monthly
+ *
+ * _Monthly
*
* @dataProvider getInvalidDayOfWeekData
*/
diff --git a/tests/PHPUnit/Core/ScheduledTime/WeeklyTest.php b/tests/PHPUnit/Core/ScheduledTime/WeeklyTest.php
index a5a6913db1..4eb5a96e41 100644
--- a/tests/PHPUnit/Core/ScheduledTime/WeeklyTest.php
+++ b/tests/PHPUnit/Core/ScheduledTime/WeeklyTest.php
@@ -30,8 +30,6 @@ class ScheduledTime_WeeklyTest extends PHPUnit_Framework_TestCase
/**
* Tests invalid call to setHour on Weekly
* @group Core
- * @group ScheduledTime
- * @group ScheduledTime_Weekly
*/
public function testSetHourScheduledTimeWeeklyNegative()
{
@@ -47,8 +45,6 @@ class ScheduledTime_WeeklyTest extends PHPUnit_Framework_TestCase
/**
* Tests invalid call to setHour on Weekly
* @group Core
- * @group ScheduledTime
- * @group ScheduledTime_Weekly
*/
public function testSetHourScheduledTimeWeeklyOver24()
{
@@ -64,8 +60,6 @@ class ScheduledTime_WeeklyTest extends PHPUnit_Framework_TestCase
/**
* Tests invalid call to setDay on Weekly
* @group Core
- * @group ScheduledTime
- * @group ScheduledTime_Weekly
*/
public function testSetDayScheduledTimeWeeklyDay0()
{
@@ -81,8 +75,6 @@ class ScheduledTime_WeeklyTest extends PHPUnit_Framework_TestCase
/**
* Tests invalid call to setDay on Weekly
* @group Core
- * @group ScheduledTime
- * @group ScheduledTime_Weekly
*/
public function testSetDayScheduledTimeWeeklyOver7()
{
@@ -98,8 +90,6 @@ class ScheduledTime_WeeklyTest extends PHPUnit_Framework_TestCase
/**
* Tests getRescheduledTime on Weekly with unspecified hour and unspecified day
* @group Core
- * @group ScheduledTime
- * @group ScheduledTime_Weekly
*/
public function testGetRescheduledTimeWeeklyUnspecifiedHourUnspecifiedDay()
{
@@ -124,8 +114,6 @@ class ScheduledTime_WeeklyTest extends PHPUnit_Framework_TestCase
/**
* Tests getRescheduledTime on Weekly with specified hour and unspecified day
* @group Core
- * @group ScheduledTime
- * @group ScheduledTime_Weekly
*/
public function testGetRescheduledTimeWeeklySpecifiedHourUnspecifiedDay()
{
@@ -151,8 +139,6 @@ class ScheduledTime_WeeklyTest extends PHPUnit_Framework_TestCase
/**
* Tests getRescheduledTime on Weekly with unspecified hour and specified day
* @group Core
- * @group ScheduledTime
- * @group ScheduledTime_Weekly
*/
public function testGetRescheduledTimeWeeklyUnspecifiedHourSpecifiedDay()
{