From e629eb038fc14f06bc840bdca1c39f16470e5d06 Mon Sep 17 00:00:00 2001 From: Dries Buytaert <dries@buytaert.net> Date: Mon, 18 Oct 2010 01:16:29 +0000 Subject: [PATCH] - Patch #919644 by scor, amateescu: fix documentation for assertOptionSelected(). --- modules/simpletest/drupal_web_test_case.php | 30 ++++++++++----------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/modules/simpletest/drupal_web_test_case.php b/modules/simpletest/drupal_web_test_case.php index 997eaaba1d03..67533c81ecab 100644 --- a/modules/simpletest/drupal_web_test_case.php +++ b/modules/simpletest/drupal_web_test_case.php @@ -2798,7 +2798,7 @@ protected function assertNoTitle($title, $message = '', $group = 'Other') { } /** - * Assert that a field exists in the current page by the given XPath. + * Asserts that a field exists in the current page by the given XPath. * * @param $xpath * XPath used to find the field. @@ -2870,7 +2870,7 @@ protected function getSelectedItem(SimpleXMLElement $element) { } /** - * Assert that a field does not exist in the current page by the given XPath. + * Asserts that a field does not exist in the current page by the given XPath. * * @param $xpath * XPath used to find the field. @@ -2902,7 +2902,7 @@ protected function assertNoFieldByXPath($xpath, $value, $message = '', $group = } /** - * Assert that a field exists in the current page with the given name and value. + * Asserts that a field exists in the current page with the given name and value. * * @param $name * Name of field to assert. @@ -2920,7 +2920,7 @@ protected function assertFieldByName($name, $value = '', $message = '') { } /** - * Assert that a field does not exist with the given name and value. + * Asserts that a field does not exist with the given name and value. * * @param $name * Name of field to assert. @@ -2938,7 +2938,7 @@ protected function assertNoFieldByName($name, $value = '', $message = '') { } /** - * Assert that a field exists in the current page with the given id and value. + * Asserts that a field exists in the current page with the given id and value. * * @param $id * Id of field to assert. @@ -2956,7 +2956,7 @@ protected function assertFieldById($id, $value = '', $message = '') { } /** - * Assert that a field does not exist with the given id and value. + * Asserts that a field does not exist with the given id and value. * * @param $id * Id of field to assert. @@ -2974,7 +2974,7 @@ protected function assertNoFieldById($id, $value = '', $message = '') { } /** - * Assert that a checkbox field in the current page is checked. + * Asserts that a checkbox field in the current page is checked. * * @param $id * Id of field to assert. @@ -2989,7 +2989,7 @@ protected function assertFieldChecked($id, $message = '') { } /** - * Assert that a checkbox field in the current page is not checked. + * Asserts that a checkbox field in the current page is not checked. * * @param $id * Id of field to assert. @@ -3004,7 +3004,7 @@ protected function assertNoFieldChecked($id, $message = '') { } /** - * Assert that a select option in the current page is not checked. + * Asserts that a select option in the current page is checked. * * @param $id * Id of select field to assert. @@ -3021,7 +3021,7 @@ protected function assertOptionSelected($id, $option, $message = '') { } /** - * Assert that a select option in the current page is not checked. + * Asserts that a select option in the current page is not checked. * * @param $id * Id of select field to assert. @@ -3038,7 +3038,7 @@ protected function assertNoOptionSelected($id, $option, $message = '') { } /** - * Assert that a field exists with the given name or id. + * Asserts that a field exists with the given name or id. * * @param $field * Name or id of field to assert. @@ -3054,7 +3054,7 @@ protected function assertField($field, $message = '', $group = 'Other') { } /** - * Assert that a field does not exist with the given name or id. + * Asserts that a field does not exist with the given name or id. * * @param $field * Name or id of field to assert. @@ -3070,7 +3070,7 @@ protected function assertNoField($field, $message = '', $group = 'Other') { } /** - * Assert that each HTML ID is used for just a single element. + * Asserts that each HTML ID is used for just a single element. * * @param $message * Message to display. @@ -3115,7 +3115,7 @@ protected function constructFieldXpath($attribute, $value) { } /** - * Assert the page responds with the specified response code. + * Asserts the page responds with the specified response code. * * @param $code * Response code. For example 200 is a successful page request. For a list @@ -3132,7 +3132,7 @@ protected function assertResponse($code, $message = '') { } /** - * Assert the page did not return the specified response code. + * Asserts the page did not return the specified response code. * * @param $code * Response code. For example 200 is a successful page request. For a list -- GitLab