当前位置: 首页>>代码示例>>PHP>>正文


PHP Assert::equals方法代码示例

本文整理汇总了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, '');
 }
开发者ID:ento,项目名称:publishToMixi,代码行数:7,代码来源:test_jpeg_extraction.php

示例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);
 }
开发者ID:ento,项目名称:publishToMixi,代码行数:10,代码来源:test_http.php

示例3: testCountItems

 public function testCountItems()
 {
     $filter = array();
     $count = count($this->test->getList($filter));
     Assert::equals($this->count, $count);
 }
开发者ID:kailIII,项目名称:articles,代码行数:6,代码来源:TestTikiArticle.php

示例4: doTest

 function doTest($testfunc, $input, $expected, $arg = NULL, $message = '')
 {
     $actual = $testfunc($input, $arg);
     //		echo ( $actual );
     Assert::equals($actual, $expected, $message);
 }
开发者ID:kei51e,项目名称:publishToMixi,代码行数:6,代码来源:TestHandlerHelpers.php

示例5: equalsFalse

 static function equalsFalse($bool, $message = '')
 {
     Assert::equals($bool, false, $message);
 }
开发者ID:ento,项目名称:publishToMixi,代码行数:4,代码来源:phpunit.php


注:本文中的Assert::equals方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。