check point

This commit is contained in:
meelstorm
2025-07-14 12:03:59 +02:00
commit d3cb790bd9
431 changed files with 44078 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
namespace VisionBuilder.UI.Recipes.Scripted.Tests
{
public class Tests
{
public void TestAddFunction(int a, int b, out int c)
{
c = a + b;
}
[SetUp]
public void Setup()
{
}
[Test]
public void Test1()
{
// setup
// todo: register function
string script = @"
test_add_function(1,2,c)
";
int c = 0;
// todo: get value of c from engine
Assert.Pass();
}
}
}