using System; using System.Collections.Generic; using System.Text; using UnitTestSharp; using Sunweaver.Commands.Abstracts; using Sunweaver.Commands.BinaryMath; using Sunweaver.DataPrototypes; namespace Sunweaver.UnitTests.Commands.BinaryMath { public class atanTests : TestFixture { BasePair bp = new atan(); VirtualMachine VM; public override void TestSetup() { VM = new VirtualMachine(); } //TODO: Need to implement some correctness tests public void Correct() { //VM.Stack.Push(-310); //VM.Stack.Push(30); //bp.Implementation(VM); //CheckEqual(30, VM.Stack.Pop()); } public void NameTest() { CheckEqual("atan", bp.ToString()); } } }