19 lines
381 B
C#
19 lines
381 B
C#
using Upsilon.Evaluator;
|
|
using Xunit;
|
|
|
|
namespace UpsilonTests.StandardLibraryTests
|
|
{
|
|
public class BasicFunctionsTests : TestClass
|
|
{
|
|
public BasicFunctionsTests(StaticScriptFixture fix) : base(fix)
|
|
{
|
|
}
|
|
|
|
[Fact]
|
|
public void Assert()
|
|
{
|
|
new Script("assert(true)", BoundScope, StaticScope).Evaluate();
|
|
}
|
|
|
|
}
|
|
} |