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


PHP PHPUnit_Framework_TestCase::assertNotEquals方法代码示例

本文整理汇总了PHP中PHPUnit_Framework_TestCase::assertNotEquals方法的典型用法代码示例。如果您正苦于以下问题:PHP PHPUnit_Framework_TestCase::assertNotEquals方法的具体用法?PHP PHPUnit_Framework_TestCase::assertNotEquals怎么用?PHP PHPUnit_Framework_TestCase::assertNotEquals使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在PHPUnit_Framework_TestCase的用法示例。


在下文中一共展示了PHPUnit_Framework_TestCase::assertNotEquals方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: isnt

 /**
  * Overwritten lime_test method
  *
  * @see lime_test#isnt()
  */
 public function isnt($exp1, $exp2, $message = '')
 {
     // lime:
     //   $exp1 - actual, $exp2 - expected
     // phpunit:
     //   assertNotEquals($expected, $actual)
     $this->testCase->assertNotEquals($exp2, $exp1, $message);
 }
开发者ID:EasyFinance,项目名称:sfPhpunitPlugin,代码行数:13,代码来源:sfPHPUnitLimeAdapter.php

示例2: iWantAnEncryptedStringBack

 /**
  * @Then I want an encrypted string back
  */
 public function iWantAnEncryptedStringBack()
 {
     $dynamicEncrypter = DynamicCryptoFactory::buildDynamicEncrypter($this->passPhrase);
     $this->encryptedString = $dynamicEncrypter->encrypt($this->string);
     PHPUnit_Framework_TestCase::assertNotEquals($this->encryptedString, $this->string);
     echo $this->encryptedString;
 }
开发者ID:testinaweb,项目名称:dynamic-crypto,代码行数:10,代码来源:FeatureContext.php

示例3: assert

 public function assert()
 {
     $title = $this->webDriver->getTitle();
     \PHPUnit_Framework_TestCase::assertNotNull($title);
     \PHPUnit_Framework_TestCase::assertNotNull($this->title);
     $title = trim($title);
     \PHPUnit_Framework_TestCase::assertNotEquals($title, $this->title);
 }
开发者ID:kschroeder,项目名称:Magium,代码行数:8,代码来源:TitleNotEquals.php

示例4: assertNotEqual

 /**
  * @deprecated since 2.3
  * @static
  * @param mixed $expected
  * @param mixed $actual
  * @param string $message
  * @return void
  */
 public static function assertNotEqual($expected, $actual, $message = '')
 {
     parent::assertNotEquals($expected, $actual, $message);
 }
开发者ID:numbas,项目名称:moodle,代码行数:12,代码来源:lib.php

示例5: iShouldNotSeeTextInTheElement

 /**
  * @Then I should not see :arg1 text matching in the :arg2 element
  * @Then I should not see :arg1 text in the :arg2 element
  */
 public function iShouldNotSeeTextInTheElement($text, $locator)
 {
     PHPUnit_Framework_TestCase::assertNotEquals($text, $this->getTextByXpath($locator), 'can see ' . $text . ' in the ' . $locator . ' element');
 }
开发者ID:shravanmechineni,项目名称:Shravan_Tests,代码行数:8,代码来源:ReusableContext.php


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