From 3efc97e9d09bc5135def29768cd7365d6e9883d9 Mon Sep 17 00:00:00 2001 From: Jordan Wages Date: Tue, 19 Aug 2025 04:42:37 -0500 Subject: [PATCH] Stub test project --- src/core/cocor/Parser.cs.old | 2 +- src/tests/UnitTest1.cs | 16 ++++++++++++++++ src/tests/tests.csproj | 23 +++++++++++++++++++++++ 3 files changed, 40 insertions(+), 1 deletion(-) create mode 100644 src/tests/UnitTest1.cs create mode 100644 src/tests/tests.csproj diff --git a/src/core/cocor/Parser.cs.old b/src/core/cocor/Parser.cs.old index 639d4f6..880d873 100644 --- a/src/core/cocor/Parser.cs.old +++ b/src/core/cocor/Parser.cs.old @@ -149,7 +149,7 @@ bool IsArrayCall() void INTERPRETER() { FunctionValue fv = new FunctionValue(); bool success = true; - decimal r = 0.0; + decimal r = 0; if (this.interpreter == null) { return; } if (IsCompare()) { diff --git a/src/tests/UnitTest1.cs b/src/tests/UnitTest1.cs new file mode 100644 index 0000000..90f7233 --- /dev/null +++ b/src/tests/UnitTest1.cs @@ -0,0 +1,16 @@ +namespace tests +{ + public class Tests + { + [SetUp] + public void Setup() + { + } + + [Test] + public void Test1() + { + Assert.Pass(); + } + } +} diff --git a/src/tests/tests.csproj b/src/tests/tests.csproj new file mode 100644 index 0000000..4407814 --- /dev/null +++ b/src/tests/tests.csproj @@ -0,0 +1,23 @@ + + + + net9.0 + latest + enable + enable + false + + + + + + + + + + + + + + +