1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

[ticket/11711] Reduce size of tests and also test topic titles

PHPBB3-11711
This commit is contained in:
Marc Alexander
2014-06-09 18:57:05 +02:00
parent b8151b1299
commit 65884bf2bd
2 changed files with 18 additions and 30 deletions

View File

@@ -996,11 +996,16 @@ class phpbb_functional_test_case extends phpbb_test_case
// Instead, I send it as a request with the submit button "post" set to true.
$crawler = self::request('POST', $posting_url, $form_data);
if ($expected !== '')
if ($expected !== '' && isset($this->lang[$expected]))
{
$this->assertContainsLang($expected, $crawler->filter('html')->text());
return null;
}
else if ($expected !== '')
{
$this->assertContains($expected, $crawler->filter('html')->text());
return null;
}
$url = $crawler->selectLink($form_data['subject'])->link()->getUri();
return array(