--HG-- rename : aspclassiccompiler/VBScriptTest/TestRunner.cs => aspclassiccompiler/VBScriptTest/VBscriptDotNetTest.cs
16 lines
495 B
C#
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);
|
|
}
|
|
}
|