From d672032c44af4eea53e1b5a54aeb23d3ef026c16 Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Tue, 26 Apr 2022 11:06:17 +0100 Subject: [PATCH] [ci skip] Remove redundant GetBytes tests in /Core --- X10D.Tests/src/Core/ByteTests.cs | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 X10D.Tests/src/Core/ByteTests.cs 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); - } -}