Ejemplo n.º 1
0
 /**
  * @group legacy
  */
 public function testConstructWithSession()
 {
     $driver = $this->getMock('Behat\\Mink\\Driver\\DriverInterface');
     $session = $this->getMockBuilder('Behat\\Mink\\Session')->disableOriginalConstructor()->getMock();
     $session->expects($this->any())->method('getDriver')->will($this->returnValue($driver));
     $exception = new ExpectationException('', $session, new \Exception('Something failed'));
     $this->assertEquals('Something failed', $exception->getMessage());
 }
 public function testEmptyMessageAndPreviousException()
 {
     $exception = new ExpectationException('', $this->getSessionMock(), new \Exception('Something failed'));
     $this->assertEquals('Something failed', $exception->getMessage());
 }