Object Test Bench and arrays as parameters
Hello!
How do I pass an array as a parameter to the method of the instance of the class in Object Test Bench? I.e. say there is a method that accepts parameter of type byte[], how can I come up with it? I tried typing something like new byte[] {10,20}, but it was not helping. I though about using Framework's Array, but it does not have constructors. Will try ArrayList and then calling ToArray, but I feel that there is gotta be something simpler

