protected function BuildTestBase::getPortNumber in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/BuildTests/Framework/BuildTestBase.php \Drupal\BuildTests\Framework\BuildTestBase::getPortNumber()
Get the port number for requests.
Test should never call this. Used by standUpServer().
Return value
int
3 calls to BuildTestBase::getPortNumber()
- BuildTestBase::standUpServer in core/
tests/ Drupal/ BuildTests/ Framework/ BuildTestBase.php - Makes a local test server using PHP's internal HTTP server.
- BuildTestBase::visit in core/
tests/ Drupal/ BuildTests/ Framework/ BuildTestBase.php - Visit a URI on the HTTP server.
- HtRouterTest::testHtRouter in core/
tests/ Drupal/ BuildTests/ Framework/ Tests/ HtRouterTest.php - @covers ::instantiateServer
File
- core/
tests/ Drupal/ BuildTests/ Framework/ BuildTestBase.php, line 524
Class
- BuildTestBase
- Provides a workspace to test build processes.
Namespace
Drupal\BuildTests\FrameworkCode
protected function getPortNumber() {
if (empty($this->hostPort)) {
$this->hostPort = $this
->findAvailablePort();
}
return $this->hostPort;
}