Remove tests always passing

This commit is contained in:
Andreas Torebring
2022-08-18 22:03:18 +02:00
parent b426c86fa9
commit 12f7bc1b53
2 changed files with 0 additions and 22 deletions
@@ -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);
@@ -1,13 +0,0 @@
using Xunit;
namespace MonoGame.Extended.Tiled.Tests
{
public class LoadContentTests
{
[Fact]
public void CanLoadContent()
{
Assert.True(true);
}
}
}