diff --git a/X10D.Tests/src/Core/ByteTests.cs b/X10D.Tests/src/Core/ByteTests.cs deleted file mode 100644 index 28a644a..0000000 --- a/X10D.Tests/src/Core/ByteTests.cs +++ /dev/null @@ -1,30 +0,0 @@ -using Microsoft.VisualStudio.TestTools.UnitTesting; -using X10D.IO; - -namespace X10D.Tests.Core; - -/// -/// Tests for -/// -[TestClass] -public class ByteTests -{ - /// - /// Tests . - /// - [TestMethod] - public void GetBytes() - { - const byte byteMinValue = byte.MinValue; - const byte byteMaxValue = byte.MaxValue; - - byte[] minValueBytes = {byteMinValue}; - byte[] maxValueBytes = {byteMaxValue}; - - byte[] minValueResult = byteMinValue.GetBytes(); - byte[] maxValueResult = byteMaxValue.GetBytes(); - - CollectionAssert.AreEqual(minValueBytes, minValueResult); - CollectionAssert.AreEqual(maxValueBytes, maxValueResult); - } -}