Upsilon/UpsilonTests/GeneralTests/UserDataListTests.cs

40 lines
993 B
C#
Raw Permalink Normal View History

using System.Collections.Generic;
2018-11-26 15:55:10 +00:00
using Upsilon;
using Upsilon.Evaluator;
using Xunit;
2018-11-23 13:38:45 +00:00
namespace UpsilonTests.GeneralTests
{
2018-11-23 11:55:28 +00:00
public class UserDataListTests : TestClass
{
[Fact]
public void BasicArrayTest()
{
var arr = new[] {100, 30, 56, 213, 76787};
const string input = @"
function getValue(arr)
return arr[3]
end
";
var evaluated = Executor.EvaluateFunction<long>(input, "getValue", new []{arr}, Options);
Assert.Equal(56, evaluated);
}
[Fact]
public void BasicListTest()
{
var arr = new List<int> {100, 30, 56, 213, 76787};
const string input = @"
function getValue(arr)
return arr[2]
end
";
var evaluated = Executor.EvaluateFunction<long>(input, "getValue", new []{arr}, Options);
Assert.Equal(30, evaluated);
}
2018-11-23 11:55:28 +00:00
public UserDataListTests(StaticScriptFixture fix) : base(fix)
{
}
}
}