mirror of
https://gitlab.com/Syroot/Worms.git
synced 2025-04-11 11:50:07 +03:00
26 lines
738 B
C#
26 lines
738 B
C#
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
using Syroot.Worms.Armageddon;
|
|
using Syroot.Worms.Test.Common;
|
|
|
|
namespace Syroot.Worms.Test.Gen2.Armageddon
|
|
{
|
|
/// <summary>
|
|
/// Represents a collection of tests for the <see cref="Scheme"/> class.
|
|
/// </summary>
|
|
[TestCategory("Armageddon")]
|
|
[TestClass]
|
|
public class SchemeTests
|
|
{
|
|
// ---- METHODS (PUBLIC) ---------------------------------------------------------------------------------------
|
|
|
|
/// <summary>
|
|
/// Loads all files found in any game directories.
|
|
/// </summary>
|
|
[TestMethod]
|
|
public void LoadSchemes()
|
|
{
|
|
TestHelpers.LoadFiles<Scheme>(Game.Armageddon, "*.wsc");
|
|
}
|
|
}
|
|
}
|