本文整理汇总了PHP中PHPUnit_Framework_TestCase::assertNotContains方法的典型用法代码示例。如果您正苦于以下问题:PHP PHPUnit_Framework_TestCase::assertNotContains方法的具体用法?PHP PHPUnit_Framework_TestCase::assertNotContains怎么用?PHP PHPUnit_Framework_TestCase::assertNotContains使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PHPUnit_Framework_TestCase
的用法示例。
在下文中一共展示了PHPUnit_Framework_TestCase::assertNotContains方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: assertNotContains
/**
* @param mixed|CM_Comparable $needle
* @param mixed|Traversable $haystack
* @param string $message
* @param boolean $ignoreCase
* @param boolean $checkForObjectIdentity
* @param bool $checkForNonObjectIdentity
* @throws CM_Exception_Invalid
*/
public static function assertNotContains($needle, $haystack, $message = '', $ignoreCase = false, $checkForObjectIdentity = true, $checkForNonObjectIdentity = false)
{
if ($needle instanceof CM_Comparable) {
if (!(is_array($haystack) || $haystack instanceof Traversable)) {
throw new CM_Exception_Invalid('Haystack is not traversable.');
}
$match = false;
foreach ($haystack as $hay) {
if ($needle->equals($hay)) {
$match = true;
break;
}
}
self::assertFalse($match, 'Needle contained.');
} else {
parent::assertNotContains($needle, $haystack, $message, $ignoreCase, $checkForObjectIdentity, $checkForNonObjectIdentity);
}
}
示例2: assertPropertyCollection
/**
* @param object $instance
* @param string $propertyName
* @param mixed $testItem
*/
public static function assertPropertyCollection($instance, $propertyName, $testItem)
{
$propertyAccess = new CollectionAccessor($instance, $propertyName);
// Check default value
\PHPUnit_Framework_TestCase::assertInstanceOf('Doctrine\\Common\\Collections\\Collection', $propertyAccess->getItems(), $propertyName . ': Default value must be instance of Collection');
// Check default size
\PHPUnit_Framework_TestCase::assertCount(0, $propertyAccess->getItems(), $propertyName . ': Default collection size must be 0');
// Add first item
\PHPUnit_Framework_TestCase::assertSame($instance, $propertyAccess->addItem($testItem), sprintf('%s::%s() - must return %s', ClassUtils::getClass($instance), $propertyAccess->getAddItemMethod(), ClassUtils::getClass($instance)));
// Check added item
\PHPUnit_Framework_TestCase::assertCount(1, $propertyAccess->getItems(), $propertyName . ': After add item - collection size must be 1');
\PHPUnit_Framework_TestCase::assertInstanceOf('Doctrine\\Common\\Collections\\Collection', $propertyAccess->getItems(), $propertyName . ': After addition of a first item - property value must be instance of Collection');
\PHPUnit_Framework_TestCase::assertEquals([$testItem], $propertyAccess->getItems()->toArray(), $propertyName . ': After addition of a first item - collections must be equals');
// Add already added item
$propertyAccess->addItem($testItem);
\PHPUnit_Framework_TestCase::assertCount(1, $propertyAccess->getItems(), $propertyName . ': After addition already added item - collection size must be same and equal 1');
// Remove item
\PHPUnit_Framework_TestCase::assertSame($instance, $propertyAccess->removeItem($testItem), sprintf('%s:%s() - must return %s', ClassUtils::getClass($instance), $propertyAccess->getRemoveItemMethod(), ClassUtils::getClass($instance)));
\PHPUnit_Framework_TestCase::assertCount(0, $propertyAccess->getItems(), $propertyName . ': After removal of a single item - collection size must be 0');
// Remove already removed item
$propertyAccess->removeItem($testItem);
\PHPUnit_Framework_TestCase::assertCount(0, $propertyAccess->getItems(), $propertyName . ': After removal already removed item - collection size must be same and equal 0');
\PHPUnit_Framework_TestCase::assertNotContains($testItem, $propertyAccess->getItems()->toArray(), $propertyName . ': After removal of a single item - collection must not contains test item');
}
示例3: assertNotContains
public static function assertNotContains($needle, $haystack, $message = '', $ignoreCase = FALSE, $checkForObjectIdentity = TRUE, $checkForNonObjectIdentity = false)
{
if ($haystack instanceof DBField) {
$haystack = (string) $haystack;
}
parent::assertNotContains($needle, $haystack, $message, $ignoreCase, $checkForObjectIdentity, $checkForNonObjectIdentity);
}
示例4: testRemove
public function testRemove($data)
{
$count = count($this->entityGet());
$countBeforeRemove = $this->countDataInCollection($data);
$returnOfRemoveMethod = $this->entityRemove($data);
if ($this->fluent) {
TestCase::assertEquals($this->entity, $this->entityRemove($data), $this->msg(self::$MSG_REMOVE_METHOD_NOT_FLUENT));
}
TestCase::assertNotContains($data, $this->entityGet(), $this->msg(self::$MSG_REMOVE_METHOD_DOES_NOT_REMOVE));
TestCase::assertCount($count - $countBeforeRemove, $this->entityGet(), $this->msg(self::$MSG_REMOVE_METHOD_DOES_NOT_REMOVE_GOOD_NUMBER_OF_ITEMS));
return $this;
}