chore: rename test project to OpenNest.Tests
Renamed OpenNest.Engine.Tests → OpenNest.Tests (directory, .csproj, namespaces in all .cs files). Added OpenNest.IO project reference. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -3,7 +3,7 @@ using OpenNest.CNC.CuttingStrategy;
|
|||||||
using OpenNest.Geometry;
|
using OpenNest.Geometry;
|
||||||
using Xunit;
|
using Xunit;
|
||||||
|
|
||||||
namespace OpenNest.Engine.Tests;
|
namespace OpenNest.Tests;
|
||||||
|
|
||||||
public class CuttingResultTests
|
public class CuttingResultTests
|
||||||
{
|
{
|
||||||
+1
@@ -23,6 +23,7 @@
|
|||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\OpenNest.Core\OpenNest.Core.csproj" />
|
<ProjectReference Include="..\OpenNest.Core\OpenNest.Core.csproj" />
|
||||||
<ProjectReference Include="..\OpenNest.Engine\OpenNest.Engine.csproj" />
|
<ProjectReference Include="..\OpenNest.Engine\OpenNest.Engine.csproj" />
|
||||||
|
<ProjectReference Include="..\OpenNest.IO\OpenNest.IO.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
@@ -2,7 +2,7 @@ using OpenNest.CNC;
|
|||||||
using OpenNest.Geometry;
|
using OpenNest.Geometry;
|
||||||
using Xunit;
|
using Xunit;
|
||||||
|
|
||||||
namespace OpenNest.Engine.Tests;
|
namespace OpenNest.Tests;
|
||||||
|
|
||||||
public class PartFlagTests
|
public class PartFlagTests
|
||||||
{
|
{
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
using OpenNest.CNC;
|
using OpenNest.CNC;
|
||||||
using OpenNest.Geometry;
|
using OpenNest.Geometry;
|
||||||
|
|
||||||
namespace OpenNest.Engine.Tests;
|
namespace OpenNest.Tests;
|
||||||
|
|
||||||
internal static class TestHelpers
|
internal static class TestHelpers
|
||||||
{
|
{
|
||||||
+13
-13
@@ -19,7 +19,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OpenNest.Console", "OpenNes
|
|||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OpenNest.Training", "OpenNest.Training\OpenNest.Training.csproj", "{249BF728-25DD-4863-8266-207ACD26E964}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OpenNest.Training", "OpenNest.Training\OpenNest.Training.csproj", "{249BF728-25DD-4863-8266-207ACD26E964}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OpenNest.Engine.Tests", "OpenNest.Engine.Tests\OpenNest.Engine.Tests.csproj", "{B2BAB0D4-C389-4571-8A5B-0DEF8C933551}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OpenNest.Tests", "OpenNest.Tests\OpenNest.Tests.csproj", "{03539EB7-9DB2-4634-A6FD-F094B9603596}"
|
||||||
EndProject
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
@@ -127,18 +127,18 @@ Global
|
|||||||
{249BF728-25DD-4863-8266-207ACD26E964}.Release|x64.Build.0 = Release|Any CPU
|
{249BF728-25DD-4863-8266-207ACD26E964}.Release|x64.Build.0 = Release|Any CPU
|
||||||
{249BF728-25DD-4863-8266-207ACD26E964}.Release|x86.ActiveCfg = Release|Any CPU
|
{249BF728-25DD-4863-8266-207ACD26E964}.Release|x86.ActiveCfg = Release|Any CPU
|
||||||
{249BF728-25DD-4863-8266-207ACD26E964}.Release|x86.Build.0 = Release|Any CPU
|
{249BF728-25DD-4863-8266-207ACD26E964}.Release|x86.Build.0 = Release|Any CPU
|
||||||
{B2BAB0D4-C389-4571-8A5B-0DEF8C933551}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
{03539EB7-9DB2-4634-A6FD-F094B9603596}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
{B2BAB0D4-C389-4571-8A5B-0DEF8C933551}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{03539EB7-9DB2-4634-A6FD-F094B9603596}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{B2BAB0D4-C389-4571-8A5B-0DEF8C933551}.Debug|x64.ActiveCfg = Debug|Any CPU
|
{03539EB7-9DB2-4634-A6FD-F094B9603596}.Debug|x64.ActiveCfg = Debug|Any CPU
|
||||||
{B2BAB0D4-C389-4571-8A5B-0DEF8C933551}.Debug|x64.Build.0 = Debug|Any CPU
|
{03539EB7-9DB2-4634-A6FD-F094B9603596}.Debug|x64.Build.0 = Debug|Any CPU
|
||||||
{B2BAB0D4-C389-4571-8A5B-0DEF8C933551}.Debug|x86.ActiveCfg = Debug|Any CPU
|
{03539EB7-9DB2-4634-A6FD-F094B9603596}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||||
{B2BAB0D4-C389-4571-8A5B-0DEF8C933551}.Debug|x86.Build.0 = Debug|Any CPU
|
{03539EB7-9DB2-4634-A6FD-F094B9603596}.Debug|x86.Build.0 = Debug|Any CPU
|
||||||
{B2BAB0D4-C389-4571-8A5B-0DEF8C933551}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{03539EB7-9DB2-4634-A6FD-F094B9603596}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{B2BAB0D4-C389-4571-8A5B-0DEF8C933551}.Release|Any CPU.Build.0 = Release|Any CPU
|
{03539EB7-9DB2-4634-A6FD-F094B9603596}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
{B2BAB0D4-C389-4571-8A5B-0DEF8C933551}.Release|x64.ActiveCfg = Release|Any CPU
|
{03539EB7-9DB2-4634-A6FD-F094B9603596}.Release|x64.ActiveCfg = Release|Any CPU
|
||||||
{B2BAB0D4-C389-4571-8A5B-0DEF8C933551}.Release|x64.Build.0 = Release|Any CPU
|
{03539EB7-9DB2-4634-A6FD-F094B9603596}.Release|x64.Build.0 = Release|Any CPU
|
||||||
{B2BAB0D4-C389-4571-8A5B-0DEF8C933551}.Release|x86.ActiveCfg = Release|Any CPU
|
{03539EB7-9DB2-4634-A6FD-F094B9603596}.Release|x86.ActiveCfg = Release|Any CPU
|
||||||
{B2BAB0D4-C389-4571-8A5B-0DEF8C933551}.Release|x86.Build.0 = Release|Any CPU
|
{03539EB7-9DB2-4634-A6FD-F094B9603596}.Release|x86.Build.0 = Release|Any CPU
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
HideSolutionNode = FALSE
|
HideSolutionNode = FALSE
|
||||||
|
|||||||
Reference in New Issue
Block a user