override public void Run() { BufferChunk bc = new BufferChunk(new byte[]{1, 2, 3}); BufferChunk clone = (BufferChunk)bc.Clone(); if(clone.Buffer != bc.Buffer) { throw new TestCaseException("buffers don't match"); } }