using Microsoft.VisualStudio.TestTools.UnitTesting; using Syroot.Worms.Armageddon; using Syroot.Worms.Test.Core; namespace Syroot.Worms.Test.Armageddon { /// /// Represents a collection of tests for the class. /// [TestClass] public class LandDataTests { // ---- METHODS (PUBLIC) --------------------------------------------------------------------------------------- /// /// Loads all files found in any game directories. /// [TestMethod] public void LoadLandData() => Tools.TestFiles(Game.Armageddon, "land.dat"); } }