General fixes for Tests

This commit is contained in:
2018-11-23 12:55:28 +01:00
parent 1e9b0e0166
commit aae16e8b62
19 changed files with 185 additions and 106 deletions

View File

@@ -3,12 +3,17 @@ using Xunit;
namespace UpsilonTests.StandardLibraryTests
{
public class BasicFunctionsTests
public class BasicFunctionsTests : TestClass
{
public BasicFunctionsTests(StaticScriptFixture fix) : base(fix)
{
}
[Fact]
public void Assert()
{
new Script("assert(true)").Evaluate();
new Script("assert(true)", BoundScope, StaticScope).Evaluate();
}
}
}