Created
May 23, 2019 01:38
-
-
Save JayBazuzi/557c4a467684ab0bfc9380b58e17b5b3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Test | |
class YouCanAddToAnArrayTheSameWayYouCanAddToAList | |
{ | |
public void addToArray_WillResultInANewCopyOfTheArrayWithTheAddedItems() throws Exception | |
{ | |
Integer[] numbers = {1, 2, 3}; | |
Integer[] result = ArrayUtils.addtoArray(numbers, 4, 5, 6); | |
assertArrayEquals({1, 2, 3, 4, 5, 6}, result); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment