Stub test project

This commit is contained in:
Jordan Wages 2025-08-19 04:42:37 -05:00
commit 3efc97e9d0
3 changed files with 40 additions and 1 deletions

View file

@ -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()) {

16
src/tests/UnitTest1.cs Normal file
View file

@ -0,0 +1,16 @@
namespace tests
{
public class Tests
{
[SetUp]
public void Setup()
{
}
[Test]
public void Test1()
{
Assert.Pass();
}
}
}

23
src/tests/tests.csproj Normal file
View file

@ -0,0 +1,23 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="coverlet.collector" Version="6.0.2" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="NUnit" Version="4.2.2" />
<PackageReference Include="NUnit.Analyzers" Version="4.3.0" />
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0" />
</ItemGroup>
<ItemGroup>
<Using Include="NUnit.Framework" />
</ItemGroup>
</Project>