using Microsoft.VisualStudio.TestTools.UnitTesting; using Syroot.Worms.Test.Core; namespace Syroot.Worms.Test { /// /// Represents a collection of tests for the class. /// [TestClass] public class PaletteTests { // ---- METHODS (PUBLIC) --------------------------------------------------------------------------------------- /// /// Loads all files found in any game directories. /// [TestMethod] public void LoadPalettes() { Tools.TestFiles(Game.Team17, "*.pal", new string[] { "wwp.pal", // Contains 4 bytes of trash after the data chunk. "wwpmaped.pal" // Contains 4 bytes of trash after the data chunk. }); } } }