From 12f7bc1b53c5a8fe07be5656a69ff1bee288398e Mon Sep 17 00:00:00 2001 From: Andreas Torebring Date: Thu, 18 Aug 2022 22:03:18 +0200 Subject: [PATCH] Remove tests always passing --- .../Particles/ColourTests.cs | 9 --------- .../LoadContentTests.cs | 13 ------------- 2 files changed, 22 deletions(-) delete mode 100644 src/cs/Tests/MonoGame.Extended.Tiled.Tests/LoadContentTests.cs diff --git a/src/cs/Tests/MonoGame.Extended.Tests/Particles/ColourTests.cs b/src/cs/Tests/MonoGame.Extended.Tests/Particles/ColourTests.cs index 9c655eea..49b5e039 100644 --- a/src/cs/Tests/MonoGame.Extended.Tests/Particles/ColourTests.cs +++ b/src/cs/Tests/MonoGame.Extended.Tests/Particles/ColourTests.cs @@ -39,13 +39,6 @@ namespace MonoGame.Extended.Tests.Particles public class AreEqualObjectMethod { - [Fact] - public void WhenGivenNull_ReturnsFalse() - { - var colour = new HslColor(360f, 1f, 1f); - Assert.NotNull(colour); - } - [Fact] public void WhenGivenEqualColour_ReturnsTrue() { @@ -56,7 +49,6 @@ namespace MonoGame.Extended.Tests.Particles } [Fact] - public void WhenGivenDifferentColour_ReturnsFalse() { var x = new HslColor(360f, 1f, 1f); @@ -66,7 +58,6 @@ namespace MonoGame.Extended.Tests.Particles } [Fact] - public void WhenGivenObjectOfAntotherType_ReturnsFalse() { var colour = new HslColor(360f, 1f, 1f); diff --git a/src/cs/Tests/MonoGame.Extended.Tiled.Tests/LoadContentTests.cs b/src/cs/Tests/MonoGame.Extended.Tiled.Tests/LoadContentTests.cs deleted file mode 100644 index 6b6059f6..00000000 --- a/src/cs/Tests/MonoGame.Extended.Tiled.Tests/LoadContentTests.cs +++ /dev/null @@ -1,13 +0,0 @@ -using Xunit; - -namespace MonoGame.Extended.Tiled.Tests -{ - public class LoadContentTests - { - [Fact] - public void CanLoadContent() - { - Assert.True(true); - } - } -}