2019-01-02 16:30:37 +01:00

25 lines
733 B
C#

using Microsoft.VisualStudio.TestTools.UnitTesting;
using Syroot.Worms.Test.Common;
using Syroot.Worms.WorldParty;
namespace Syroot.Worms.Test.WorldParty
{
/// <summary>
/// Represents a collection of tests for the <see cref="TeamContainer"/> class.
/// </summary>
[TestClass]
public class TeamContainerTests
{
// ---- METHODS (PUBLIC) ---------------------------------------------------------------------------------------
/// <summary>
/// Loads all files found in any game directories.
/// </summary>
[TestMethod]
public void LoadTeamContainers()
{
TestHelpers.LoadFiles<TeamContainer>(Game.WormsWorldParty, "*.wwp");
}
}
}