Removed unused class

This commit is contained in:
Thorsten Sommer 2020-08-04 17:10:34 +02:00
parent ed9143f240
commit 7e00a48e67

View File

@ -8,11 +8,9 @@ using Exa;
using NUnit.Framework; using NUnit.Framework;
namespace ExaArrayTests namespace ExaArrayTests
{
public class ExaArray1DTests
{ {
[ExcludeFromCodeCoverage] [ExcludeFromCodeCoverage]
public class InfinityArrayTests public class ExaArray1DTests
{ {
private class TestClass private class TestClass
{ {
@ -272,10 +270,7 @@ namespace ExaArrayTests
var next = ExaArray1D<byte>.CreateFrom(exPerf); var next = ExaArray1D<byte>.CreateFrom(exPerf);
Assert.That(next.Length, Is.EqualTo(exPerf.Length)); Assert.That(next.Length, Is.EqualTo(exPerf.Length));
Assert.DoesNotThrow(() => Assert.DoesNotThrow(() => { next[4_999_999_999] = 0xab; });
{
next[4_999_999_999] = 0xab;
});
exPerf = null; exPerf = null;
next = null; next = null;
@ -285,10 +280,7 @@ namespace ExaArrayTests
next = ExaArray1D<byte>.CreateFrom(exElem); next = ExaArray1D<byte>.CreateFrom(exElem);
Assert.That(next.Length, Is.EqualTo(exElem.Length)); Assert.That(next.Length, Is.EqualTo(exElem.Length));
Assert.DoesNotThrow(() => Assert.DoesNotThrow(() => { next[4_999_999_999] = 0xab; });
{
next[4_999_999_999] = 0xab;
});
} }
[Test] [Test]
@ -744,4 +736,3 @@ namespace ExaArrayTests
} }
} }
} }
}