Issue #2421713 by JeroenT: Remove deprecated functions in WebTestBase.php
parent
afbd12c425
commit
fdbfed3cad
|
@ -2420,26 +2420,6 @@ abstract class WebTestBase extends TestBase {
|
||||||
return $header;
|
return $header;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the current raw HTML of requested page.
|
|
||||||
*
|
|
||||||
* @deprecated 8.x
|
|
||||||
* Use getRawContent().
|
|
||||||
*/
|
|
||||||
protected function drupalGetContent() {
|
|
||||||
return $this->getRawContent();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the value of drupalSettings for the currently-loaded page.
|
|
||||||
*
|
|
||||||
* @deprecated 8.x
|
|
||||||
* Use getDrupalSettings().
|
|
||||||
*/
|
|
||||||
protected function drupalGetSettings() {
|
|
||||||
return $this->getDrupalSettings();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets an array containing all emails sent during this test case.
|
* Gets an array containing all emails sent during this test case.
|
||||||
*
|
*
|
||||||
|
@ -2466,26 +2446,6 @@ abstract class WebTestBase extends TestBase {
|
||||||
return $filtered_emails;
|
return $filtered_emails;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the raw HTML content.
|
|
||||||
*
|
|
||||||
* @deprecated 8.x
|
|
||||||
* Use setRawContent().
|
|
||||||
*/
|
|
||||||
protected function drupalSetContent($content) {
|
|
||||||
$this->setRawContent($content);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the value of drupalSettings for the currently-loaded page.
|
|
||||||
*
|
|
||||||
* @deprecated 8.x
|
|
||||||
* Use setDrupalSettings().
|
|
||||||
*/
|
|
||||||
protected function drupalSetSettings($settings) {
|
|
||||||
$this->setDrupalSettings($settings);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Passes if the internal browser's URL matches the given path.
|
* Passes if the internal browser's URL matches the given path.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue