7681a1bad0
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
14 lines
247 B
C#
14 lines
247 B
C#
using OpenNest.CNC;
|
|
|
|
namespace OpenNest.Tests;
|
|
|
|
public class CutOffTests
|
|
{
|
|
[Fact]
|
|
public void Drawing_IsCutOff_DefaultsFalse()
|
|
{
|
|
var drawing = new Drawing("test", new Program());
|
|
Assert.False(drawing.IsCutOff);
|
|
}
|
|
}
|