Move unit tests from specflow to NUnit

This commit is contained in:
Peter Butzhammer
2024-02-05 14:21:40 +01:00
parent e524d82784
commit 8d8d5617d1
5 changed files with 55 additions and 359 deletions

View File

@@ -1,32 +1,18 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net461</TargetFramework>
</PropertyGroup>
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
<PackageReference Include="NUnit" Version="3.11.0" />
<PackageReference Include="SpecFlow" Version="2.4.0" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="DeepEqual" Version="4.2.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
<PackageReference Include="NUnit" Version="3.11.0" />
<PackageReference Include="Shouldly" Version="4.2.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Sharp7.Rx\Sharp7.Rx.csproj" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Sharp7.Rx\Sharp7.Rx.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Update="ParsingS7VariableName.feature.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>ParsingS7VariableName.feature</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<None Update="ParsingS7VariableName.feature">
<Generator>SpecFlowSingleFileGenerator</Generator>
<LastGenOutput>ParsingS7VariableName.feature.cs</LastGenOutput>
</None>
</ItemGroup>
</Project>
</Project>