From 03b8d26ecd918ec41ec5a540cab8928e26dbaf3d Mon Sep 17 00:00:00 2001 From: valentinbreiz Date: Fri, 3 Jul 2020 18:26:31 +0200 Subject: [PATCH] Move GuidTest to Cosmos.Compiler.Tests.Bcl.System --- Tests/Kernels/Cosmos.Compiler.Tests.Bcl.System/Kernel.cs | 2 +- .../Kernels/Cosmos.Compiler.Tests.Bcl.System/System/GuidTest.cs | 2 +- Tests/Kernels/Cosmos.Compiler.Tests.Bcl/Kernel.cs | 2 -- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/Tests/Kernels/Cosmos.Compiler.Tests.Bcl.System/Kernel.cs b/Tests/Kernels/Cosmos.Compiler.Tests.Bcl.System/Kernel.cs index 7730642eb..42bd0c1c3 100644 --- a/Tests/Kernels/Cosmos.Compiler.Tests.Bcl.System/Kernel.cs +++ b/Tests/Kernels/Cosmos.Compiler.Tests.Bcl.System/Kernel.cs @@ -42,7 +42,7 @@ namespace Cosmos.Compiler.Tests.Bcl.System ConvertTests.Execute(); DateTimeTests.Execute(); TimeSpanTests.Execute(); - + GuidTest.Execute(); TestController.Completed(); } diff --git a/Tests/Kernels/Cosmos.Compiler.Tests.Bcl.System/System/GuidTest.cs b/Tests/Kernels/Cosmos.Compiler.Tests.Bcl.System/System/GuidTest.cs index aa0259ac4..6ad1fb4fc 100644 --- a/Tests/Kernels/Cosmos.Compiler.Tests.Bcl.System/System/GuidTest.cs +++ b/Tests/Kernels/Cosmos.Compiler.Tests.Bcl.System/System/GuidTest.cs @@ -5,7 +5,7 @@ using Cosmos.TestRunner; namespace Cosmos.Compiler.Tests.Bcl.System { - class GuidTest + internal static class GuidTest { public static void Execute() diff --git a/Tests/Kernels/Cosmos.Compiler.Tests.Bcl/Kernel.cs b/Tests/Kernels/Cosmos.Compiler.Tests.Bcl/Kernel.cs index f6222821f..ce2b0e66d 100644 --- a/Tests/Kernels/Cosmos.Compiler.Tests.Bcl/Kernel.cs +++ b/Tests/Kernels/Cosmos.Compiler.Tests.Bcl/Kernel.cs @@ -50,8 +50,6 @@ namespace Cosmos.Compiler.Tests.Bcl // System.Text StringBuilderTest.Execute(); EncodingTest.Execute(); - - GuidTest.Execute(); TestController.Completed(); }