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