aspclassiccompiler/aspclassiccompiler/VBScript/Runtime/IAssert.cs
dotneteer 1a17abff27 Added unmanaged VBScrip Test.
--HG--
rename : aspclassiccompiler/VBScriptTest/TestRunner.cs => aspclassiccompiler/VBScriptTest/VBscriptDotNetTest.cs
2011-04-14 23:27:40 -07:00

16 lines
495 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using System.Runtime.InteropServices;
namespace Dlrsoft.VBScript.Runtime
{
public interface IAssert
{
void AreEqual(object expected, object actual, string message);
void AreNotEqual(object notExpected, object actual, string message);
void Fail(string message);
void IsFalse(bool condition, string message);
void IsTrue(bool condition, string message);
}
}