diff --git a/core/modules/simpletest/lib/Drupal/simpletest/TestBase.php b/core/modules/simpletest/lib/Drupal/simpletest/TestBase.php index c28e5b4..dc6dae4 100644 --- a/core/modules/simpletest/lib/Drupal/simpletest/TestBase.php +++ b/core/modules/simpletest/lib/Drupal/simpletest/TestBase.php @@ -169,7 +169,7 @@ protected function checkRequirements() { * @param $group * (optional) The group this message is in, which is displayed in a column * in test output. Use 'Debug' to indicate this is debugging output. Do not - * translate this string. Defaults to 'Other'; more tests do not override + * translate this string. Defaults to 'Other'; most tests do not override * this default. * @param $caller * By default, the assert comes from a function whose name starts with @@ -334,7 +334,7 @@ protected function getAssertionCall() { * @param $group * (optional) The group this message is in, which is displayed in a column * in test output. Use 'Debug' to indicate this is debugging output. Do not - * translate this string. Defaults to 'Other'; more tests do not override + * translate this string. Defaults to 'Other'; most tests do not override * this default. * @return * TRUE if the assertion succeeded, FALSE otherwise. @@ -355,7 +355,7 @@ protected function assertTrue($value, $message = '', $group = 'Other') { * @param $group * (optional) The group this message is in, which is displayed in a column * in test output. Use 'Debug' to indicate this is debugging output. Do not - * translate this string. Defaults to 'Other'; more tests do not override + * translate this string. Defaults to 'Other'; most tests do not override * this default. * @return * TRUE if the assertion succeeded, FALSE otherwise. @@ -376,7 +376,7 @@ protected function assertFalse($value, $message = '', $group = 'Other') { * @param $group * (optional) The group this message is in, which is displayed in a column * in test output. Use 'Debug' to indicate this is debugging output. Do not - * translate this string. Defaults to 'Other'; more tests do not override + * translate this string. Defaults to 'Other'; most tests do not override * this default. * @return * TRUE if the assertion succeeded, FALSE otherwise. @@ -397,7 +397,7 @@ protected function assertNull($value, $message = '', $group = 'Other') { * @param $group * (optional) The group this message is in, which is displayed in a column * in test output. Use 'Debug' to indicate this is debugging output. Do not - * translate this string. Defaults to 'Other'; more tests do not override + * translate this string. Defaults to 'Other'; most tests do not override * this default. * @return * TRUE if the assertion succeeded, FALSE otherwise. @@ -420,7 +420,7 @@ protected function assertNotNull($value, $message = '', $group = 'Other') { * @param $group * (optional) The group this message is in, which is displayed in a column * in test output. Use 'Debug' to indicate this is debugging output. Do not - * translate this string. Defaults to 'Other'; more tests do not override + * translate this string. Defaults to 'Other'; most tests do not override * this default. * @return * TRUE if the assertion succeeded, FALSE otherwise. @@ -443,7 +443,7 @@ protected function assertEqual($first, $second, $message = '', $group = 'Other') * @param $group * (optional) The group this message is in, which is displayed in a column * in test output. Use 'Debug' to indicate this is debugging output. Do not - * translate this string. Defaults to 'Other'; more tests do not override + * translate this string. Defaults to 'Other'; most tests do not override * this default. * @return * TRUE if the assertion succeeded, FALSE otherwise. @@ -466,7 +466,7 @@ protected function assertNotEqual($first, $second, $message = '', $group = 'Othe * @param $group * (optional) The group this message is in, which is displayed in a column * in test output. Use 'Debug' to indicate this is debugging output. Do not - * translate this string. Defaults to 'Other'; more tests do not override + * translate this string. Defaults to 'Other'; most tests do not override * this default. * @return * TRUE if the assertion succeeded, FALSE otherwise. @@ -489,7 +489,7 @@ protected function assertIdentical($first, $second, $message = '', $group = 'Oth * @param $group * (optional) The group this message is in, which is displayed in a column * in test output. Use 'Debug' to indicate this is debugging output. Do not - * translate this string. Defaults to 'Other'; more tests do not override + * translate this string. Defaults to 'Other'; most tests do not override * this default. * @return * TRUE if the assertion succeeded, FALSE otherwise. @@ -512,7 +512,7 @@ protected function assertNotIdentical($first, $second, $message = '', $group = ' * @param $group * (optional) The group this message is in, which is displayed in a column * in test output. Use 'Debug' to indicate this is debugging output. Do not - * translate this string. Defaults to 'Other'; more tests do not override + * translate this string. Defaults to 'Other'; most tests do not override * this default. * * @return @@ -542,7 +542,7 @@ protected function assertIdenticalObject($object1, $object2, $message = '', $gro * @param $group * (optional) The group this message is in, which is displayed in a column * in test output. Use 'Debug' to indicate this is debugging output. Do not - * translate this string. Defaults to 'Other'; more tests do not override + * translate this string. Defaults to 'Other'; most tests do not override * this default. * @return * TRUE. @@ -561,7 +561,7 @@ protected function pass($message = NULL, $group = 'Other') { * @param $group * (optional) The group this message is in, which is displayed in a column * in test output. Use 'Debug' to indicate this is debugging output. Do not - * translate this string. Defaults to 'Other'; more tests do not override + * translate this string. Defaults to 'Other'; most tests do not override * this default. * @return * FALSE. @@ -580,7 +580,7 @@ protected function fail($message = NULL, $group = 'Other') { * @param $group * (optional) The group this message is in, which is displayed in a column * in test output. Use 'Debug' to indicate this is debugging output. Do not - * translate this string. Defaults to 'Other'; more tests do not override + * translate this string. Defaults to 'Other'; most tests do not override * this default. * @param $caller * The caller of the error. diff --git a/core/modules/simpletest/lib/Drupal/simpletest/WebTestBase.php b/core/modules/simpletest/lib/Drupal/simpletest/WebTestBase.php index d7e911c..c5dbd0b 100644 --- a/core/modules/simpletest/lib/Drupal/simpletest/WebTestBase.php +++ b/core/modules/simpletest/lib/Drupal/simpletest/WebTestBase.php @@ -1701,7 +1701,7 @@ protected function getAllOptions(SimpleXMLElement $element) { * @param $group * (optional) The gorup this message is in, which is displayed in a column * in test output. Use 'Debug' to indicate this is debugging output. Do not - * translate this string. Defaults to 'Other'; more tests do not override + * translate this string. Defaults to 'Other'; most tests do not override * this default. * @return * TRUE if the assertion succeeded, FALSE otherwise. @@ -1726,7 +1726,7 @@ protected function assertLink($label, $index = 0, $message = '', $group = 'Other * @param $group * (optional) The group this message is in, which is displayed in a column * in test output. Use 'Debug' to indicate this is debugging output. Do not - * translate this string. Defaults to 'Other'; more tests do not override + * translate this string. Defaults to 'Other'; most tests do not override * this default. * @return * TRUE if the assertion succeeded, FALSE otherwise. @@ -1751,7 +1751,7 @@ protected function assertNoLink($label, $message = '', $group = 'Other') { * @param $group * (optional) The group this message is in, which is displayed in a column * in test output. Use 'Debug' to indicate this is debugging output. Do not - * translate this string. Defaults to 'Other'; more tests do not override + * translate this string. Defaults to 'Other'; most tests do not override * this default. * * @return @@ -1775,7 +1775,7 @@ protected function assertLinkByHref($href, $index = 0, $message = '', $group = ' * @param $group * (optional) The group this message is in, which is displayed in a column * in test output. Use 'Debug' to indicate this is debugging output. Do not - * translate this string. Defaults to 'Other'; more tests do not override + * translate this string. Defaults to 'Other'; most tests do not override * this default. * * @return @@ -2042,7 +2042,7 @@ protected function createTypedData($definition, $value = NULL, $context = array( * @param $group * (optional) The group this message is in, which is displayed in a column * in test output. Use 'Debug' to indicate this is debugging output. Do not - * translate this string. Defaults to 'Other'; more tests do not override + * translate this string. Defaults to 'Other'; most tests do not override * this default. * * @return @@ -2071,7 +2071,7 @@ protected function assertUrl($path, array $options = array(), $message = '', $gr * @param $group * (optional) The group this message is in, which is displayed in a column * in test output. Use 'Debug' to indicate this is debugging output. Do not - * translate this string. Defaults to 'Other'; more tests do not override + * translate this string. Defaults to 'Other'; most tests do not override * this default. * @return * TRUE on pass, FALSE on fail. @@ -2096,7 +2096,7 @@ protected function assertRaw($raw, $message = '', $group = 'Other') { * @param $group * (optional) The group this message is in, which is displayed in a column * in test output. Use 'Debug' to indicate this is debugging output. Do not - * translate this string. Defaults to 'Other'; more tests do not override + * translate this string. Defaults to 'Other'; most tests do not override * this default. * @return * TRUE on pass, FALSE on fail. @@ -2122,7 +2122,7 @@ protected function assertNoRaw($raw, $message = '', $group = 'Other') { * @param $group * (optional) The group this message is in, which is displayed in a column * in test output. Use 'Debug' to indicate this is debugging output. Do not - * translate this string. Defaults to 'Other'; more tests do not override + * translate this string. Defaults to 'Other'; most tests do not override * this default. * @return * TRUE on pass, FALSE on fail. @@ -2145,7 +2145,7 @@ protected function assertText($text, $message = '', $group = 'Other') { * @param $group * (optional) The group this message is in, which is displayed in a column * in test output. Use 'Debug' to indicate this is debugging output. Do not - * translate this string. Defaults to 'Other'; more tests do not override + * translate this string. Defaults to 'Other'; most tests do not override * this default. * @return * TRUE on pass, FALSE on fail. @@ -2168,7 +2168,7 @@ protected function assertNoText($text, $message = '', $group = 'Other') { * @param $group * (optional) The group this message is in, which is displayed in a column * in test output. Use 'Debug' to indicate this is debugging output. Do not - * translate this string. Defaults to 'Other'; more tests do not override + * translate this string. Defaults to 'Other'; most tests do not override * this default. * @param $not_exists * TRUE if this text should not exist, FALSE if it should. @@ -2201,7 +2201,7 @@ protected function assertTextHelper($text, $message = '', $group, $not_exists) { * @param $group * (optional) The group this message is in, which is displayed in a column * in test output. Use 'Debug' to indicate this is debugging output. Do not - * translate this string. Defaults to 'Other'; more tests do not override + * translate this string. Defaults to 'Other'; most tests do not override * this default. * @return * TRUE on pass, FALSE on fail. @@ -2226,7 +2226,7 @@ protected function assertUniqueText($text, $message = '', $group = 'Other') { * @param $group * (optional) The group this message is in, which is displayed in a column * in test output. Use 'Debug' to indicate this is debugging output. Do not - * translate this string. Defaults to 'Other'; more tests do not override + * translate this string. Defaults to 'Other'; most tests do not override * this default. * @return * TRUE on pass, FALSE on fail. @@ -2249,7 +2249,7 @@ protected function assertNoUniqueText($text, $message = '', $group = 'Other') { * @param $group * (optional) The group this message is in, which is displayed in a column * in test output. Use 'Debug' to indicate this is debugging output. Do not - * translate this string. Defaults to 'Other'; more tests do not override + * translate this string. Defaults to 'Other'; most tests do not override * this default. * @param $be_unique * TRUE if this text should be found only once, FALSE if it should be found more than once. @@ -2284,7 +2284,7 @@ protected function assertUniqueTextHelper($text, $message = '', $group, $be_uniq * @param $group * (optional) The group this message is in, which is displayed in a column * in test output. Use 'Debug' to indicate this is debugging output. Do not - * translate this string. Defaults to 'Other'; more tests do not override + * translate this string. Defaults to 'Other'; most tests do not override * this default. * @return * TRUE on pass, FALSE on fail. @@ -2308,7 +2308,7 @@ protected function assertPattern($pattern, $message = '', $group = 'Other') { * @param $group * (optional) The group this message is in, which is displayed in a column * in test output. Use 'Debug' to indicate this is debugging output. Do not - * translate this string. Defaults to 'Other'; more tests do not override + * translate this string. Defaults to 'Other'; most tests do not override * this default. * @return * TRUE on pass, FALSE on fail. @@ -2332,7 +2332,7 @@ protected function assertNoPattern($pattern, $message = '', $group = 'Other') { * @param $group * (optional) The group this message is in, which is displayed in a column * in test output. Use 'Debug' to indicate this is debugging output. Do not - * translate this string. Defaults to 'Other'; more tests do not override + * translate this string. Defaults to 'Other'; most tests do not override * this default. * @return * TRUE on pass, FALSE on fail. @@ -2360,7 +2360,7 @@ protected function assertTitle($title, $message = '', $group = 'Other') { * @param $group * (optional) The group this message is in, which is displayed in a column * in test output. Use 'Debug' to indicate this is debugging output. Do not - * translate this string. Defaults to 'Other'; more tests do not override + * translate this string. Defaults to 'Other'; most tests do not override * this default. * @return * TRUE on pass, FALSE on fail. @@ -2421,7 +2421,7 @@ protected function assertThemeOutput($callback, array $variables = array(), $exp * @param $group * (optional) The group this message is in, which is displayed in a column * in test output. Use 'Debug' to indicate this is debugging output. Do not - * translate this string. Defaults to 'Other'; more tests do not override + * translate this string. Defaults to 'Other'; most tests do not override * this default. * * @return @@ -2499,7 +2499,7 @@ protected function getSelectedItem(SimpleXMLElement $element) { * @param $group * (optional) The group this message is in, which is displayed in a column * in test output. Use 'Debug' to indicate this is debugging output. Do not - * translate this string. Defaults to 'Other'; more tests do not override + * translate this string. Defaults to 'Other'; most tests do not override * this default. * * @return @@ -2537,7 +2537,7 @@ protected function assertNoFieldByXPath($xpath, $value = NULL, $message = '', $g * @param $group * (optional) The group this message is in, which is displayed in a column * in test output. Use 'Debug' to indicate this is debugging output. Do not - * translate this string. Defaults to 'Other'; more tests do not override + * translate this string. Defaults to 'Other'; most tests do not override * this default. * @return * TRUE on pass, FALSE on fail. @@ -2573,7 +2573,7 @@ protected function assertFieldByName($name, $value = NULL, $message = NULL) { * @param $group * (optional) The group this message is in, which is displayed in a column * in test output. Use 'Debug' to indicate this is debugging output. Do not - * translate this string. Defaults to 'Other'; more tests do not override + * translate this string. Defaults to 'Other'; most tests do not override * this default. * @return * TRUE on pass, FALSE on fail. @@ -2596,7 +2596,7 @@ protected function assertNoFieldByName($name, $value = '', $message = '') { * @param $group * (optional) The group this message is in, which is displayed in a column * in test output. Use 'Debug' to indicate this is debugging output. Do not - * translate this string. Defaults to 'Other'; more tests do not override + * translate this string. Defaults to 'Other'; most tests do not override * this default. * @return * TRUE on pass, FALSE on fail. @@ -2619,7 +2619,7 @@ protected function assertFieldById($id, $value = '', $message = '') { * @param $group * (optional) The group this message is in, which is displayed in a column * in test output. Use 'Debug' to indicate this is debugging output. Do not - * translate this string. Defaults to 'Other'; more tests do not override + * translate this string. Defaults to 'Other'; most tests do not override * this default. * @return * TRUE on pass, FALSE on fail. @@ -2753,7 +2753,7 @@ protected function assertNoOptionSelected($id, $option, $message = '') { * @param $group * (optional) The group this message is in, which is displayed in a column * in test output. Use 'Debug' to indicate this is debugging output. Do not - * translate this string. Defaults to 'Other'; more tests do not override + * translate this string. Defaults to 'Other'; most tests do not override * this default. * @return * TRUE on pass, FALSE on fail. @@ -2774,7 +2774,7 @@ protected function assertField($field, $message = '', $group = 'Other') { * @param $group * (optional) The group this message is in, which is displayed in a column * in test output. Use 'Debug' to indicate this is debugging output. Do not - * translate this string. Defaults to 'Other'; more tests do not override + * translate this string. Defaults to 'Other'; most tests do not override * this default. * @return * TRUE on pass, FALSE on fail. @@ -2793,7 +2793,7 @@ protected function assertNoField($field, $message = '', $group = 'Other') { * @param $group * (optional) The group this message is in, which is displayed in a column * in test output. Use 'Debug' to indicate this is debugging output. Do not - * translate this string. Defaults to 'Other'; more tests do not override + * translate this string. Defaults to 'Other'; most tests do not override * this default. * @param $ids_to_skip * An optional array of ids to skip when checking for duplicates. It is