本文整理汇总了PHP中PHPUnit_Framework_Assert::assertNotSame方法的典型用法代码示例。如果您正苦于以下问题:PHP PHPUnit_Framework_Assert::assertNotSame方法的具体用法?PHP PHPUnit_Framework_Assert::assertNotSame怎么用?PHP PHPUnit_Framework_Assert::assertNotSame使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PHPUnit_Framework_Assert
的用法示例。
在下文中一共展示了PHPUnit_Framework_Assert::assertNotSame方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: it_should_change_message_type
/**
* @test
*/
public function it_should_change_message_type()
{
$messageType = new MessageType(MessageType::PONG);
$socketMessage = $this->socketMessage->changeMessageType($messageType);
\PHPUnit_Framework_Assert::assertNotSame($this->socketMessage, $socketMessage);
$this->assertEquals($socketMessage->getMessageType(), $messageType);
$this->assertSame($socketMessage->getCredentials(), $this->credentials);
$this->assertEquals($socketMessage->getCorrelationID(), 'correlation');
$this->assertSame($socketMessage->getData(), $this->protobufMessage);
}
示例2: assertNotSame
/**
* Asserts that two variables do not have the same type and value.
* Used on objects, it asserts that two variables do not reference
* the same object.
*
* @param mixed $expected
* @param mixed $actual
* @param string $message
*/
function assertNotSame($expected, $actual, $message = '')
{
return PHPUnit_Framework_Assert::assertNotSame($expected, $actual, $message);
}
示例3: seeResponseIsXml
/**
* Checks whether last response was valid XML.
* This is done with libxml_get_last_error function.
*
* @part xml
*/
public function seeResponseIsXml()
{
libxml_use_internal_errors(true);
$doc = simplexml_load_string($this->response);
$num = "";
$title = "";
if ($doc === false) {
$error = libxml_get_last_error();
$num = $error->code;
$title = trim($error->message);
libxml_clear_errors();
}
libxml_use_internal_errors(false);
\PHPUnit_Framework_Assert::assertNotSame(false, $doc, "xml decoding error #{$num} with message \"{$title}\", see http://www.xmlsoft.org/html/libxml-xmlerror.html");
}
示例4: toHaveLength
public function toHaveLength($length)
{
if ($this->negate) {
a::assertNotSame($length, strlen($this->actual));
} else {
a::assertSame($length, strlen($this->actual));
}
}
示例5: notSame
public function notSame($expected)
{
a::assertNotSame($expected, $this->actual, $this->description);
}
示例6: notToBe
/**
* Expect that two variables do not have the same type and value.
* Used on objects, it asserts that two variables do not reference the same object.
*
* @param mixed $expected
* @param string $message
*
* @return Expect
*/
public function notToBe($expected, $message = '')
{
Assert::assertNotSame($expected, $this->value, $message);
return $this;
}
示例7: isNotTheSameAs
public function isNotTheSameAs($expected)
{
Assert::assertNotSame($expected, $this->actual, $this->description);
return $this;
}