aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShitiz Garg <mail@dragooon.net>2014-06-27 19:03:33 +0530
committerShitiz Garg <mail@dragooon.net>2014-06-27 19:03:33 +0530
commit9051248e12f8d25f0632b3f3e89738a497a6619b (patch)
tree44f00bdd7103e53fdc8bc7c6b54868a111a534bf
parentdbc223b4c374082d6385205e022664f38380366b (diff)
downloadforums-9051248e12f8d25f0632b3f3e89738a497a6619b.tar
forums-9051248e12f8d25f0632b3f3e89738a497a6619b.tar.gz
forums-9051248e12f8d25f0632b3f3e89738a497a6619b.tar.bz2
forums-9051248e12f8d25f0632b3f3e89738a497a6619b.tar.xz
forums-9051248e12f8d25f0632b3f3e89738a497a6619b.zip
[ticket/12334] Group profile fields test
PHPBB3-12334
-rw-r--r--tests/profilefields/type_bool_test.php3
-rw-r--r--tests/profilefields/type_date_test.php3
-rw-r--r--tests/profilefields/type_dropdown_test.php3
-rw-r--r--tests/profilefields/type_googleplus_test.php3
-rw-r--r--tests/profilefields/type_int_test.php3
-rw-r--r--tests/profilefields/type_string_test.php3
-rw-r--r--tests/profilefields/type_url_test.php3
7 files changed, 21 insertions, 0 deletions
diff --git a/tests/profilefields/type_bool_test.php b/tests/profilefields/type_bool_test.php
index bdab179c8c..9eccc7eb6d 100644
--- a/tests/profilefields/type_bool_test.php
+++ b/tests/profilefields/type_bool_test.php
@@ -11,6 +11,9 @@
*
*/
+/**
+* @group profilefields
+*/
class phpbb_profilefield_type_bool_test extends phpbb_test_case
{
protected $cp;
diff --git a/tests/profilefields/type_date_test.php b/tests/profilefields/type_date_test.php
index 0ad2cde9fe..8129f47de8 100644
--- a/tests/profilefields/type_date_test.php
+++ b/tests/profilefields/type_date_test.php
@@ -11,6 +11,9 @@
*
*/
+/**
+* @group profilefields
+*/
class phpbb_profilefield_type_date_test extends phpbb_test_case
{
protected $cp;
diff --git a/tests/profilefields/type_dropdown_test.php b/tests/profilefields/type_dropdown_test.php
index 1d20578fc1..5ba17ef120 100644
--- a/tests/profilefields/type_dropdown_test.php
+++ b/tests/profilefields/type_dropdown_test.php
@@ -11,6 +11,9 @@
*
*/
+/**
+* @group profilefields
+*/
class phpbb_profilefield_type_dropdown_test extends phpbb_test_case
{
protected $cp;
diff --git a/tests/profilefields/type_googleplus_test.php b/tests/profilefields/type_googleplus_test.php
index fdbdd86553..88387b5a99 100644
--- a/tests/profilefields/type_googleplus_test.php
+++ b/tests/profilefields/type_googleplus_test.php
@@ -11,6 +11,9 @@
*
*/
+/**
+* @group profilefields
+*/
class phpbb_profilefield_type_googleplus_test extends phpbb_test_case
{
public function get_profile_contact_value_data()
diff --git a/tests/profilefields/type_int_test.php b/tests/profilefields/type_int_test.php
index 4b7bbc18c4..9f432ad3c1 100644
--- a/tests/profilefields/type_int_test.php
+++ b/tests/profilefields/type_int_test.php
@@ -11,6 +11,9 @@
*
*/
+/**
+* @group profilefields
+*/
class phpbb_profilefield_type_int_test extends phpbb_test_case
{
protected $cp;
diff --git a/tests/profilefields/type_string_test.php b/tests/profilefields/type_string_test.php
index 0df42f388f..0ae91f1e8e 100644
--- a/tests/profilefields/type_string_test.php
+++ b/tests/profilefields/type_string_test.php
@@ -15,6 +15,9 @@ require_once dirname(__FILE__) . '/../../phpBB/includes/functions.php';
require_once dirname(__FILE__) . '/../../phpBB/includes/functions_content.php';
require_once dirname(__FILE__) . '/../../phpBB/includes/utf/utf_tools.php';
+/**
+* @group profilefields
+*/
class phpbb_profilefield_type_string_test extends phpbb_test_case
{
protected $cp;
diff --git a/tests/profilefields/type_url_test.php b/tests/profilefields/type_url_test.php
index a45a28e7c7..3ed21b5fe5 100644
--- a/tests/profilefields/type_url_test.php
+++ b/tests/profilefields/type_url_test.php
@@ -13,6 +13,9 @@
require_once dirname(__FILE__) . '/../../phpBB/includes/functions.php';
+/**
+* @group profilefields
+*/
class phpbb_profilefield_type_url_test extends phpbb_test_case
{
protected $cp;