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