From 804a860a84b09fc4ef3fa2e46ca4f2dc5ea50e44 Mon Sep 17 00:00:00 2001 From: Dylan Wilson Date: Sun, 10 Jul 2016 22:19:37 +1000 Subject: [PATCH] removed broken test --- .../MonoGame.Extended.Tests.csproj | 1 - .../TextureAtlasKenneyXmlTests.cs | 26 ------------------- 2 files changed, 27 deletions(-) delete mode 100644 Source/MonoGame.Extended.Tests/TextureAtlases/TextureAtlasKenneyXmlTests.cs diff --git a/Source/MonoGame.Extended.Tests/MonoGame.Extended.Tests.csproj b/Source/MonoGame.Extended.Tests/MonoGame.Extended.Tests.csproj index 0eae6414..574faca1 100644 --- a/Source/MonoGame.Extended.Tests/MonoGame.Extended.Tests.csproj +++ b/Source/MonoGame.Extended.Tests/MonoGame.Extended.Tests.csproj @@ -79,7 +79,6 @@ - diff --git a/Source/MonoGame.Extended.Tests/TextureAtlases/TextureAtlasKenneyXmlTests.cs b/Source/MonoGame.Extended.Tests/TextureAtlases/TextureAtlasKenneyXmlTests.cs deleted file mode 100644 index c361e1bb..00000000 --- a/Source/MonoGame.Extended.Tests/TextureAtlases/TextureAtlasKenneyXmlTests.cs +++ /dev/null @@ -1,26 +0,0 @@ -using System; -using System.IO; -using Microsoft.Xna.Framework.Content; -using MonoGame.Extended.TextureAtlases; -using NSubstitute; -using NUnit.Framework; - -namespace MonoGame.Extended.Tests.TextureAtlases -{ - [TestFixture] - public class TextureAtlasKenneyXmlTests - { - [Test] - public void TextureAtlas_LoadFromKenneyXml_Test() - { - const string path = @"D:\Github\Public\MonoGame.Extended\Source\Demos\Demo.Gui\Content\kenney-gui-blue-atlas.xml"; - var serviceProvider = Substitute.For(); - var contentManager = new ContentManager(serviceProvider); - - using (var stream = File.OpenRead(path)) - { - var textureAtlas = TextureAtlasReader.FromRawXml(contentManager, stream); - } - } - } -} \ No newline at end of file