Skip to content

Commit 4e42d93

Browse files
test: math functions
1 parent 49601c2 commit 4e42d93

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
using Parser.ExpressionParser;
2+
using Parser.ExpressionParser.Functions.Math;
3+
4+
namespace Test.Expression
5+
{
6+
public class MathFunctionTests
7+
{
8+
internal static object[] MathFunctionTestInput =
9+
{
10+
new object[]
11+
{
12+
new AddFunction(),
13+
"add",
14+
new[] {new ValueContainer(1), new ValueContainer(2)},
15+
new ValueContainer(3)
16+
},
17+
};
18+
}
19+
}

0 commit comments

Comments
 (0)