本文整理汇总了PHP中Assert::equals方法的典型用法代码示例。如果您正苦于以下问题:PHP Assert::equals方法的具体用法?PHP Assert::equals怎么用?PHP Assert::equals使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Assert
的用法示例。
在下文中一共展示了Assert::equals方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: test_extract_jpeg_images_with_redirection
function test_extract_jpeg_images_with_redirection()
{
$html = '<html><body><img src="http://ocafe.appspot.com/?redirect=true"/></body></html>';
$images = p2mixi_extract_jpeg_images($html, 1);
// Assert::equals( count ($images['images']), 1, '');
Assert::equals(strlen($images['images'][0]), 5221, '');
}
示例2: test_post
function test_post()
{
$url = $this->get_test_server_url();
$request_headers = array('Content-type' => 'application/x-www-form-urlencoded');
$response_headers = array();
$response_body = '';
$request_body = 'name=value123';
p2mixi_http_post($url, $request_headers, $request_body, $response_headers, $response_body);
Assert::equals($response_body, $request_body, $request_body);
}
示例3: testCountItems
public function testCountItems()
{
$filter = array();
$count = count($this->test->getList($filter));
Assert::equals($this->count, $count);
}
示例4: doTest
function doTest($testfunc, $input, $expected, $arg = NULL, $message = '')
{
$actual = $testfunc($input, $arg);
// echo ( $actual );
Assert::equals($actual, $expected, $message);
}
示例5: equalsFalse
static function equalsFalse($bool, $message = '')
{
Assert::equals($bool, false, $message);
}