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