PATH:
opt
/
alt
/
tests
/
alt-php81-pecl-bitset_3.2.0-1.el8
/
tests
--TEST-- BitSet BitSet::fromInteger() - Verifies the provided value is represented in set bits --SKIPIF-- <?php if (!extension_loaded('bitset')) die('skipping missing extension'); ?> --FILE-- <?php $b = BitSet::fromInteger(0); var_dump($b->__toString()); var_dump($b->toInteger()); $b = BitSet::fromInteger(42); var_dump($b->__toString()); var_dump($b->toInteger()); $b = BitSet::fromInteger(0x010203); var_dump($b->__toString()); var_dump($b->toInteger()); $b = new BitSet(80); try { var_dump($b->toInteger()); } catch (InvalidArgumentException $e) { echo "Exception: " . $e->getMessage() . "\n"; } ?> --EXPECTF-- string(%d) "0000000000000000000%s" int(0) string(%d) "0101010000000000000%s" int(42) string(%d) "1100000001000000100%s" int(66051) Exception: The total bits doesn't fit in an integer
[-] BitSet_fromInteger.phpt
[edit]
[-] BitSet_andOp.phpt
[edit]
[-] BitSet_intersects.phpt
[edit]
[-] BitSet_set.phpt
[edit]
[-] BitSet_length.phpt
[edit]
[-] BitSet_previousSetBit.phpt
[edit]
[-] BitSet_xorOp.phpt
[edit]
[-] BitSet_orOp.phpt
[edit]
[-] bug63315.phpt
[edit]
[-] BitSet_size.phpt
[edit]
[-] BitSet_nextSetBit.phpt
[edit]
[-] BitSet_get.phpt
[edit]
[-] BitSet_construct.phpt
[edit]
[-] BitSet_fromString.phpt
[edit]
[-] BitSet_toArray.phpt
[edit]
[-] BitSet_nextClearBit.phpt
[edit]
[+]
..
[-] BitSet_previousClearBit.phpt
[edit]
[-] BitSet_getRawValue.phpt
[edit]
[-] BitSet_andNotOp.phpt
[edit]
[-] BitSet_clear.phpt
[edit]
[-] BitSet_fromRawValue.phpt
[edit]
[-] BitSet_isEmpty.phpt
[edit]
[-] BitSet_fromArray.phpt
[edit]
[-] BitSet_cardinality.phpt
[edit]