@Test
public void testSetColumn_InRangeOf_2_to_4() {
ByteMatrix a = factory().createMatrix(new byte[][] { {0}, {0}, {0}, {0}});
ByteMatrix b = factory().createMatrix(new byte[][] { {0}, {0}, {3}, {4}});
ByteVector vector = factory().createVector(new byte[] {1, 2, 3, 4});
a.setColumn(0, 2, vector, 2, 2); // yes, the second 2 is the length
assertEquals(a, b);
}