CsvLib.Tests: Fix root namespace

This commit is contained in:
2024-02-18 16:04:56 +01:00
parent afcd404dfc
commit 9429751e65
5 changed files with 6 additions and 8 deletions

View File

@@ -1,6 +1,5 @@
using CsvLib;
namespace CvsLib;
namespace CvsLib.Tests;
[TestSubject(typeof(ByteArraySearcher))]
public class ByteArraySearcherTests

View File

@@ -1,7 +1,6 @@
using System.Text;
using CsvLib;
namespace CvsLib;
namespace CvsLib.Tests;
[TestSubject(typeof(CsvFieldIndexer))]
public class CsvFieldIndexerTests

View File

@@ -4,7 +4,7 @@
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>CvsLib</RootNamespace>
<RootNamespace>CvsLib.Tests</RootNamespace>
<IsPackable>false</IsPackable>
</PropertyGroup>

View File

@@ -1,6 +1,5 @@
using CsvLib;
namespace CvsLib;
namespace CvsLib.Tests;
[TestSubject(typeof(CsvParser))]
public class CsvParserTest

View File

@@ -1,2 +1,3 @@
global using Xunit;
global using JetBrains.Annotations;
global using CsvLib;