getExpectationLine() public static method

Uses a stack trace to find the line of an assertion.
public static getExpectationLine ( )
Beispiel #1
0
 /**
  *    Sets the number of times to call a method to prevent
  *    a failure on the tally.
  *    @param string $method      Method call to test.
  *    @param integer $count      Least number of times it should
  *                               have been called.
  *    @param string $message     Overridden message.
  *    @access public
  */
 function expectMinimumCallCount($method, $count, $message = '%s')
 {
     $this->_dieOnNoMethod($method, 'set minimum call count');
     $message .= Mock::getExpectationLine();
     $this->_expected_counts[strtolower($method)] = new MinimumCallCountExpectation($method, $count, $message);
 }