Skip to content

Commit fce3f15

Browse files
committed
Testcase for issue #443
1 parent 4eca228 commit fce3f15

File tree

1 file changed

+18
-0
lines changed
  • test/NumSharp.UnitTest/Issues

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
using Microsoft.VisualStudio.TestTools.UnitTesting;
2+
3+
namespace NumSharp.UnitTest.Issues
4+
{
5+
[TestClass]
6+
public class Issue443
7+
{
8+
/// <summary>
9+
/// https://github.com/SciSharp/NumSharp/issues/443#issue-825238582
10+
/// </summary>
11+
[TestMethod]
12+
public void ReproducingTest()
13+
{
14+
var ones = np.ones((10, 1));
15+
ones.negate();
16+
}
17+
}
18+
}

0 commit comments

Comments
 (0)