import v1.1.0_RC2 | 2009-09-20
This commit is contained in:
@ -1,4 +1,24 @@
|
||||
<?php
|
||||
/**
|
||||
* Zend Framework
|
||||
*
|
||||
* LICENSE
|
||||
*
|
||||
* This source file is subject to the new BSD license that is bundled
|
||||
* with this package in the file LICENSE.txt.
|
||||
* It is also available through the world-wide-web at this URL:
|
||||
* http://framework.zend.com/license/new-bsd
|
||||
* If you did not receive a copy of the license and are unable to
|
||||
* obtain it through the world-wide-web, please send an email
|
||||
* to license@zend.com so we can send you a copy immediately.
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Test
|
||||
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
* @version $Id: DomQuery.php 16874 2009-07-20 12:46:00Z mikaelkael $
|
||||
*/
|
||||
|
||||
/** PHPUnit_Framework_Constraint */
|
||||
require_once 'PHPUnit/Framework/Constraint.php';
|
||||
|
||||
@ -7,12 +27,12 @@ require_once 'Zend/Dom/Query.php';
|
||||
|
||||
/**
|
||||
* Zend_Dom_Query-based PHPUnit Constraint
|
||||
*
|
||||
*
|
||||
* @uses PHPUnit_Framework_Constraint
|
||||
* @package Zend_Test
|
||||
* @subpackage PHPUnit
|
||||
* @copyright Copyright (C) 2008 - Present, Zend Technologies, Inc.
|
||||
* @license New BSD {@link http://framework.zend.com/license/new-bsd}
|
||||
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
*/
|
||||
class Zend_Test_PHPUnit_Constraint_DomQuery extends PHPUnit_Framework_Constraint
|
||||
{
|
||||
@ -72,7 +92,7 @@ class Zend_Test_PHPUnit_Constraint_DomQuery extends PHPUnit_Framework_Constraint
|
||||
|
||||
/**
|
||||
* Constructor; setup constraint state
|
||||
*
|
||||
*
|
||||
* @param string $path CSS selector path
|
||||
* @return void
|
||||
*/
|
||||
@ -83,8 +103,8 @@ class Zend_Test_PHPUnit_Constraint_DomQuery extends PHPUnit_Framework_Constraint
|
||||
|
||||
/**
|
||||
* Indicate negative match
|
||||
*
|
||||
* @param bool $flag
|
||||
*
|
||||
* @param bool $flag
|
||||
* @return void
|
||||
*/
|
||||
public function setNegate($flag = true)
|
||||
@ -94,8 +114,8 @@ class Zend_Test_PHPUnit_Constraint_DomQuery extends PHPUnit_Framework_Constraint
|
||||
|
||||
/**
|
||||
* Whether or not path is a straight XPath expression
|
||||
*
|
||||
* @param bool $flag
|
||||
*
|
||||
* @param bool $flag
|
||||
* @return Zend_Test_PHPUnit_Constraint_DomQuery
|
||||
*/
|
||||
public function setUseXpath($flag = true)
|
||||
@ -106,7 +126,7 @@ class Zend_Test_PHPUnit_Constraint_DomQuery extends PHPUnit_Framework_Constraint
|
||||
|
||||
/**
|
||||
* Evaluate an object to see if it fits the constraints
|
||||
*
|
||||
*
|
||||
* @param string $other String to examine
|
||||
* @param null|string Assertion type
|
||||
* @return bool
|
||||
@ -176,11 +196,11 @@ class Zend_Test_PHPUnit_Constraint_DomQuery extends PHPUnit_Framework_Constraint
|
||||
|
||||
/**
|
||||
* Report Failure
|
||||
*
|
||||
*
|
||||
* @see PHPUnit_Framework_Constraint for implementation details
|
||||
* @param mixed $other CSS selector path
|
||||
* @param string $description
|
||||
* @param bool $not
|
||||
* @param string $description
|
||||
* @param bool $not
|
||||
* @return void
|
||||
* @throws PHPUnit_Framework_ExpectationFailedException
|
||||
*/
|
||||
@ -236,7 +256,7 @@ class Zend_Test_PHPUnit_Constraint_DomQuery extends PHPUnit_Framework_Constraint
|
||||
|
||||
/**
|
||||
* Complete implementation
|
||||
*
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function toString()
|
||||
@ -246,8 +266,8 @@ class Zend_Test_PHPUnit_Constraint_DomQuery extends PHPUnit_Framework_Constraint
|
||||
|
||||
/**
|
||||
* Check to see if content is matched in selected nodes
|
||||
*
|
||||
* @param Zend_Dom_Query_Result $result
|
||||
*
|
||||
* @param Zend_Dom_Query_Result $result
|
||||
* @param string $match Content to match
|
||||
* @return bool
|
||||
*/
|
||||
@ -269,9 +289,9 @@ class Zend_Test_PHPUnit_Constraint_DomQuery extends PHPUnit_Framework_Constraint
|
||||
|
||||
/**
|
||||
* Check to see if content is NOT matched in selected nodes
|
||||
*
|
||||
* @param Zend_Dom_Query_Result $result
|
||||
* @param string $match
|
||||
*
|
||||
* @param Zend_Dom_Query_Result $result
|
||||
* @param string $match
|
||||
* @return bool
|
||||
*/
|
||||
protected function _notMatchContent($result, $match)
|
||||
@ -292,8 +312,8 @@ class Zend_Test_PHPUnit_Constraint_DomQuery extends PHPUnit_Framework_Constraint
|
||||
|
||||
/**
|
||||
* Check to see if content is matched by regex in selected nodes
|
||||
*
|
||||
* @param Zend_Dom_Query_Result $result
|
||||
*
|
||||
* @param Zend_Dom_Query_Result $result
|
||||
* @param string $pattern
|
||||
* @return bool
|
||||
*/
|
||||
@ -315,8 +335,8 @@ class Zend_Test_PHPUnit_Constraint_DomQuery extends PHPUnit_Framework_Constraint
|
||||
|
||||
/**
|
||||
* Check to see if content is NOT matched by regex in selected nodes
|
||||
*
|
||||
* @param Zend_Dom_Query_Result $result
|
||||
*
|
||||
* @param Zend_Dom_Query_Result $result
|
||||
* @param string $pattern
|
||||
* @return bool
|
||||
*/
|
||||
@ -338,8 +358,8 @@ class Zend_Test_PHPUnit_Constraint_DomQuery extends PHPUnit_Framework_Constraint
|
||||
|
||||
/**
|
||||
* Determine if content count matches criteria
|
||||
*
|
||||
* @param Zend_Dom_Query_Result $result
|
||||
*
|
||||
* @param Zend_Dom_Query_Result $result
|
||||
* @param int $test Value against which to test
|
||||
* @param string $type assertion type
|
||||
* @return boolean
|
||||
@ -364,8 +384,8 @@ class Zend_Test_PHPUnit_Constraint_DomQuery extends PHPUnit_Framework_Constraint
|
||||
|
||||
/**
|
||||
* Get node content, minus node markup tags
|
||||
*
|
||||
* @param DOMNode $node
|
||||
*
|
||||
* @param DOMNode $node
|
||||
* @return string
|
||||
*/
|
||||
protected function _getNodeContent(DOMNode $node)
|
||||
|
Reference in New Issue
Block a user