本文整理汇总了PHP中Webmozart\Assert\Assert::contains方法的典型用法代码示例。如果您正苦于以下问题:PHP Assert::contains方法的具体用法?PHP Assert::contains怎么用?PHP Assert::contains使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Webmozart\Assert\Assert
的用法示例。
在下文中一共展示了Assert::contains方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: makeRelative
/**
* Turns a URL into a relative path.
*
* The result is a canonical path. This class is using functionality of Path class.
*
* @see Path
*
* @param string $url A URL to make relative.
* @param string $baseUrl A base URL.
*
* @return string
*
* @throws InvalidArgumentException If the URL and base URL does
* not match.
*/
public static function makeRelative($url, $baseUrl)
{
Assert::string($url, 'The URL must be a string. Got: %s');
Assert::string($baseUrl, 'The base URL must be a string. Got: %s');
Assert::contains($baseUrl, '://', '%s is not an absolute Url.');
list($baseHost, $basePath) = self::split($baseUrl);
if (false === strpos($url, '://')) {
if (0 === strpos($url, '/')) {
$host = $baseHost;
} else {
$host = '';
}
$path = $url;
} else {
list($host, $path) = self::split($url);
}
if ('' !== $host && $host !== $baseHost) {
throw new InvalidArgumentException(sprintf('The URL "%s" cannot be made relative to "%s" since their host names are different.', $host, $baseHost));
}
return Path::makeRelative($path, $basePath);
}
示例2: iShouldSeeOutput
/**
* @Then I should see output :text
*/
public function iShouldSeeOutput($text)
{
Assert::contains($this->tester->getDisplay(), $text);
}
示例3: theyShouldHaveOrderLikeAnd
/**
* @Then they should have order like :firstTaxonName, :secondTaxonName, :thirdTaxonName and :fourthTaxonName
*/
public function theyShouldHaveOrderLikeAnd(...$taxonsNames)
{
$leaves = $this->createPage->getLeaves();
foreach ($leaves as $key => $leaf) {
Assert::contains($taxonsNames[$key], $leaf->getText());
}
}
示例4: assertPageHasContent
/**
* {@inheritdoc}
*/
public function assertPageHasContent(StaticContent $staticContent)
{
$this->verify(['name' => $staticContent->getName()]);
Assert::contains($this->getSession()->getPage()->getHtml(), $staticContent->getTitle());
Assert::contains($this->getSession()->getPage()->getHtml(), $staticContent->getBody());
}
示例5: iShouldSeeThatImpersonatingWasSuccessful
/**
* @Then I should see that impersonating :email was successful
*/
public function iShouldSeeThatImpersonatingWasSuccessful($email)
{
Assert::contains($this->customerShowPage->getSuccessFlashMessage(), $email);
}