import org.junit.Test;
public class TestVectorMatrix {
@Test public void testCreateM3() {
VectorMatrixM3 m=new VectorMatrixM3(0);
assertEquals(0,m.rowCount());
assertEquals(3,m.columnCount());
AMatrix mt=m.getTranspose();
assertEquals(0,mt.columnCount());
}