I have a class for IO that uses ByteBuffer to buffer access to a FileChannel (so it basically accepts a FileChannel at the constructor). I'd like to unittest it, so it'd be nice if I could get a bytearray-backed FileChannel to avoid creating and deleting files during test.
To get you an idea, it'd be perfect if I could get something like ByteArrayOutputStream.getChannel().
