mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
31 lines
861 B
C#
31 lines
861 B
C#
using System;
|
|
using System.Windows.Forms;
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
using Wabbajack.Lib;
|
|
using Wabbajack.Lib.CompilationSteps;
|
|
|
|
namespace Wabbajack.Test
|
|
{
|
|
[TestClass]
|
|
public class CompilationStackTests : ACompilerTest
|
|
{
|
|
[TestMethod]
|
|
public void TestStackSerialization()
|
|
{
|
|
var profile = utils.AddProfile();
|
|
var mod = utils.AddMod("test");
|
|
|
|
utils.Configure();
|
|
var compiler = ConfigureAndRunCompiler(profile);
|
|
var stack = compiler.MakeStack();
|
|
|
|
var serialized = Serialization.Serialize(stack);
|
|
var rounded = Serialization.Serialize(Serialization.Deserialize(serialized, compiler));
|
|
|
|
Assert.AreEqual(serialized, rounded);
|
|
|
|
Assert.IsNotNull(compiler.GetStack());
|
|
}
|
|
}
|
|
}
|