Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | public function testGoAboutPageAndVerifyContent() |
||
14 | { |
||
15 | $this->open("/"); |
||
16 | $this->click("link=Acerca de…"); |
||
17 | $this->waitForPageToLoad("30000"); |
||
18 | $this->assertEquals("Acerca de… | Agilecyl", $this->getTitle()); |
||
19 | try { |
||
20 | $this->assertEquals("Acerca de… | Agilecyl", $this->getTitle()); |
||
21 | } catch (PHPUnit_Framework_AssertionFailedError $e) { |
||
22 | array_push($this->verificationErrors, $e->toString()); |
||
23 | } |
||
24 | $this->assertEquals("Si buscas resultados distintos, no hagas siempre lo mismo",$this->getText("css=strong > em")); |
||
25 | } |
||
26 | } |
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.