mirror of
https://gitlab.com/Syroot/Worms.git
synced 2025-04-14 21:22:29 +03:00
25 lines
733 B
C#
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");
|
|
}
|
|
}
|
|
}
|