aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPayBas <contact@paybas.com>2014-05-22 00:55:08 +0200
committerShitiz Garg <mail@dragooon.net>2014-06-24 21:47:29 +0530
commit8cef0b69715e04cb39ab365e4bdb01a958e7126b (patch)
treec1e6c98ce938279fc360a035b89af92db942b447
parent349fbabd2e686d828f683cb7df13ce38bbe6d645 (diff)
downloadforums-8cef0b69715e04cb39ab365e4bdb01a958e7126b.tar
forums-8cef0b69715e04cb39ab365e4bdb01a958e7126b.tar.gz
forums-8cef0b69715e04cb39ab365e4bdb01a958e7126b.tar.bz2
forums-8cef0b69715e04cb39ab365e4bdb01a958e7126b.tar.xz
forums-8cef0b69715e04cb39ab365e4bdb01a958e7126b.zip
[ticket/12334] Removed tests
Will be implemented in #2459 PHPBB3-12334
-rw-r--r--tests/profile/get_profile_value_raw_test.php52
1 files changed, 0 insertions, 52 deletions
diff --git a/tests/profile/get_profile_value_raw_test.php b/tests/profile/get_profile_value_raw_test.php
deleted file mode 100644
index 20b61f062b..0000000000
--- a/tests/profile/get_profile_value_raw_test.php
+++ /dev/null
@@ -1,52 +0,0 @@
-<?php
-/**
-*
-* @package testing
-* @copyright (c) 2014 phpBB Group
-* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
-*
-*/
-
-class phpbb_profile_get_profile_value_raw_test extends phpbb_test_case
-{
- static public function get_profile_value_raw_data()
- {
- return array(
- array('\phpbb\profilefields\type\type_int', '10', true, 10),
- array('\phpbb\profilefields\type\type_int', '0', true, 0),
- array('\phpbb\profilefields\type\type_int', '', true, 0),
- array('\phpbb\profilefields\type\type_int', null, true, 0),
- array('\phpbb\profilefields\type\type_int', '10', false, 10),
- array('\phpbb\profilefields\type\type_int', '0', false, 0),
- array('\phpbb\profilefields\type\type_int', '', false, null),
- array('\phpbb\profilefields\type\type_int', null, false, null),
- array('\phpbb\profilefields\type\type_url', 'http://www.test.com/', false, 'http://www.test.com/'),
- array('\phpbb\profilefields\type\type_url', 'http://www.test.com/', true, 'http://www.test.com/'),
- array('\phpbb\profilefields\type\type_text', '[b]bbcode test[/b]', false, '[b]bbcode test[/b]'),
- array('\phpbb\profilefields\type\type_text', '[b]bbcode test[/b]', true, '[b]bbcode test[/b]'),
- /* array('\phpbb\profilefields\type\type_dropdown', '5', false, '5'),
- array('\phpbb\profilefields\type\type_dropdown', '5', true, '5'),
- array('\phpbb\profilefields\type\type_dropdown', '', false, ''),
- array('\phpbb\profilefields\type\type_dropdown', '', true, ''),
- array('\phpbb\profilefields\type\type_dropdown', null, false, null),
- array('\phpbb\profilefields\type\type_dropdown', null, true, null), */
- );
- }
-
- /**
- * @dataProvider get_profile_value_raw_data
- */
- public function test_get_profile_value_raw($type, $value, $show_novalue, $expected)
- {
- $cp = new $type(
- $this->getMock('\phpbb\request\request'),
- $this->getMock('\phpbb\template\template'),
- $this->getMock('\phpbb\user')
- );
-
- $this->assertSame($expected, $cp->get_profile_value_raw($value, array(
- 'field_type' => $type,
- 'field_show_novalue' => $show_novalue,
- )));
- }
-}