From 9429751e6556da67b162d942b34658faaefda95a Mon Sep 17 00:00:00 2001 From: "Valeriano A.R." Date: Sun, 18 Feb 2024 16:04:56 +0100 Subject: [PATCH] CsvLib.Tests: Fix root namespace --- CsvLib.Tests/ByteArraySearcherTests.cs | 3 +-- CsvLib.Tests/CsvFieldIndexerTests.cs | 3 +-- CsvLib.Tests/CsvLib.Tests.csproj | 2 +- CsvLib.Tests/CsvParserTest.cs | 3 +-- CsvLib.Tests/Usings.cs | 3 ++- 5 files changed, 6 insertions(+), 8 deletions(-) diff --git a/CsvLib.Tests/ByteArraySearcherTests.cs b/CsvLib.Tests/ByteArraySearcherTests.cs index 96078b2..6ed58fa 100644 --- a/CsvLib.Tests/ByteArraySearcherTests.cs +++ b/CsvLib.Tests/ByteArraySearcherTests.cs @@ -1,6 +1,5 @@ -using CsvLib; -namespace CvsLib; +namespace CvsLib.Tests; [TestSubject(typeof(ByteArraySearcher))] public class ByteArraySearcherTests diff --git a/CsvLib.Tests/CsvFieldIndexerTests.cs b/CsvLib.Tests/CsvFieldIndexerTests.cs index 367deae..cf88d36 100644 --- a/CsvLib.Tests/CsvFieldIndexerTests.cs +++ b/CsvLib.Tests/CsvFieldIndexerTests.cs @@ -1,7 +1,6 @@ using System.Text; -using CsvLib; -namespace CvsLib; +namespace CvsLib.Tests; [TestSubject(typeof(CsvFieldIndexer))] public class CsvFieldIndexerTests diff --git a/CsvLib.Tests/CsvLib.Tests.csproj b/CsvLib.Tests/CsvLib.Tests.csproj index 7c96ec1..d8038ae 100644 --- a/CsvLib.Tests/CsvLib.Tests.csproj +++ b/CsvLib.Tests/CsvLib.Tests.csproj @@ -4,7 +4,7 @@ net8.0 enable enable - CvsLib + CvsLib.Tests false diff --git a/CsvLib.Tests/CsvParserTest.cs b/CsvLib.Tests/CsvParserTest.cs index df5a950..0d21367 100644 --- a/CsvLib.Tests/CsvParserTest.cs +++ b/CsvLib.Tests/CsvParserTest.cs @@ -1,6 +1,5 @@ -using CsvLib; -namespace CvsLib; +namespace CvsLib.Tests; [TestSubject(typeof(CsvParser))] public class CsvParserTest diff --git a/CsvLib.Tests/Usings.cs b/CsvLib.Tests/Usings.cs index f545ca8..5b99ace 100644 --- a/CsvLib.Tests/Usings.cs +++ b/CsvLib.Tests/Usings.cs @@ -1,2 +1,3 @@ global using Xunit; -global using JetBrains.Annotations; \ No newline at end of file +global using JetBrains.Annotations; +global using CsvLib; \ No newline at end of file