Files
OpenNest/OpenNest.Engine.Qwen/tests/QwenNestingEngineTests.cs
T
ajandClaude Sonnet 5 1c8305e8a1 feat(engine): scaffold independent nesting engine plugins for Sonnet5, Terra, Qwen
Three standalone INestingEngine plugin projects (Solve() unimplemented,
throws NotImplementedException), each outside OpenNest.sln and discovered
at runtime via NestingEngineRegistry.LoadPlugins, same pattern as
OpenNest.Engine.Aurora. Each README spells out that Solve() must be an
independently designed placement algorithm and must never call/wrap/select
over the built-in engines (StockLadderNestingEngine, FixedStrategyNestingEngine,
PlateNesterFactory, NestingEngineRegistry).

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-09-22 22:06:47 -04:00

21 lines
573 B
C#

using System;
using System.Collections.Generic;
using OpenNest.Engine.Jobs;
using OpenNest.Geometry;
namespace OpenNest.Engine.Qwen.Tests;
public class QwenNestingEngineTests
{
[Fact]
public void SolveReturnsAResultForASingleSimplePart()
{
// TODO: replace with a real fixture once Solve() is implemented — this only
// proves the plumbing (project reference, constructor, interface) is wired up.
var engine = new QwenNestingEngine();
Assert.NotNull(engine);
Assert.IsAssignableFrom<INestingEngine>(engine);
}
}