Skip to content

Commit

Permalink
Setup repo for nunit/nunit-console#1349
Browse files Browse the repository at this point in the history
  • Loading branch information
indy-singh committed Jun 27, 2023
0 parents commit e6d8df8
Show file tree
Hide file tree
Showing 4 changed files with 55 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.vs/
bin/
obj/
12 changes: 12 additions & 0 deletions UnitTest1.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
using NUnit.Framework;

namespace nunit_console_runner_issue_1349;

public class Tests
{
[TestCase("\u001a")]
public void Test1(string foo)
{
Assert.Pass();
}
}
18 changes: 18 additions & 0 deletions nunit_console_runner_issue_1349.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net6.0;net472</TargetFrameworks>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
<LangVersion>10</LangVersion>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.5.0" />
<PackageReference Include="NUnit" Version="3.13.3" />
<PackageReference Include="NUnit3TestAdapter" Version="4.4.2" />
<PackageReference Include="NUnit.Analyzers" Version="3.6.1" />
<PackageReference Include="coverlet.collector" Version="3.2.0" />
</ItemGroup>

</Project>
22 changes: 22 additions & 0 deletions nunit_console_runner_issue_1349.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.31903.59
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunit_console_runner_issue_1349", "nunit_console_runner_issue_1349.csproj", "{BB9FC36B-000B-4036-B384-864F6538FE1C}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{BB9FC36B-000B-4036-B384-864F6538FE1C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{BB9FC36B-000B-4036-B384-864F6538FE1C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BB9FC36B-000B-4036-B384-864F6538FE1C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BB9FC36B-000B-4036-B384-864F6538FE1C}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal

0 comments on commit e6d8df8

Please sign in to comment.