@@ -34,6 +34,7 @@ public void CumsumMemberFunctionTest()
3434 }
3535
3636 [ TestMethod ]
37+ [ Ignore ( "Cumulative summing on multidimensional arrays not implemented yet" ) ]
3738 public void Cumsum2dTest ( )
3839 {
3940 NDArray arr = new int [ , ] { { 1 , 2 , 3 } , { 4 , 5 , 6 } } ;
@@ -45,6 +46,7 @@ public void Cumsum2dTest()
4546 }
4647
4748 [ TestMethod ]
49+ [ Ignore ( "Cumulative summing with specified data type not implemented yet" ) ]
4850 public void Cumsum2dDtypeTest ( )
4951 {
5052 NDArray arr = new int [ , ] { { 1 , 2 , 3 } , { 4 , 5 , 6 } } ;
@@ -56,6 +58,7 @@ public void Cumsum2dDtypeTest()
5658 }
5759
5860 [ TestMethod ]
61+ [ Ignore ( "Cumulative summing along axis not implemented yet" ) ]
5962 public void Cumsum2dAxisRowsTest ( )
6063 {
6164 NDArray arr = new int [ , ] { { 1 , 2 , 3 } , { 4 , 5 , 6 } } ;
@@ -73,6 +76,7 @@ public void Cumsum2dAxisRowsTest()
7376 }
7477
7578 [ TestMethod ]
79+ [ Ignore ( "Cumulative summing along axis not implemented yet" ) ]
7680 public void Cumsum2dAxisColsTest ( )
7781 {
7882 NDArray arr = new int [ , ] { { 1 , 2 , 3 } , { 4 , 5 , 6 } } ;
0 commit comments