Stub test project
This commit is contained in:
parent
53a904e0b0
commit
3efc97e9d0
3 changed files with 40 additions and 1 deletions
|
@ -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
16
src/tests/UnitTest1.cs
Normal 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
23
src/tests/tests.csproj
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue