Skip to content

Commit 342ea5a

Browse files
committed
Completing unit test
1 parent 1485a5d commit 342ea5a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/BitArray/BitArrayTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -424,8 +424,10 @@ public function cases_copy()
424424
['11010011', 2, 7, 4, '11110011'],
425425
['11010011', 2, -4, 4, '11001111'],
426426
['11010011', 9, -4, 4, '11010011'],
427+
['11010011', 2, -9, 4, '11110111'],
427428
['11010011', 0, 3, null, '10011011'],
428429
['11010011', 0, 3, -3, '10010011'],
430+
['11010011', 0, 3, -9, '11010011'],
429431
];
430432
}
431433

0 commit comments

Comments
 (0)