Phase 14 complete — v0.4 Robustness milestone closed:
- HardwareTestHelper.GetIpOrSkip: Assert.Ignore when HEIDENHAIN/SIEMENS/MITSUBISHI_IP not set (ISS-007)
- Hardware_ConnectAsync_RealMachine [Category("Hardware")] added to all 3 integration test files
- LicenseFileTests: 4 tests covering empty, whitespace, valid base64, nonexistent path
- Validate_EmptyFingerprint_ReturnsFalse: confirms validator safe against empty input (ISS-008 scaffold)
- NcProgramManager.Tests.csproj: <Compile> entries for 2 new files
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
73 lines
3.4 KiB
XML
73 lines
3.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props"
|
|
Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
|
<PropertyGroup>
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
<ProjectGuid>{A1B2C3D4-E5F6-7890-ABCD-EF1234567890}</ProjectGuid>
|
|
<OutputType>Library</OutputType>
|
|
<RootNamespace>NcProgramManager.Tests</RootNamespace>
|
|
<AssemblyName>NcProgramManager.Tests</AssemblyName>
|
|
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
|
|
<FileAlignment>512</FileAlignment>
|
|
<Deterministic>true</Deterministic>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<DebugType>full</DebugType>
|
|
<Optimize>false</Optimize>
|
|
<OutputPath>bin\Debug\</OutputPath>
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
<DebugType>pdbonly</DebugType>
|
|
<Optimize>true</Optimize>
|
|
<OutputPath>bin\Release\</OutputPath>
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Reference Include="System" />
|
|
<Reference Include="System.Net" />
|
|
<Reference Include="nunit.framework">
|
|
<HintPath>..\packages\NUnit.3.13.3\lib\net45\nunit.framework.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="Moq">
|
|
<HintPath>..\packages\Moq.4.18.4\lib\net462\Moq.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="Castle.Core">
|
|
<HintPath>..\packages\Castle.Core.5.1.1\lib\net462\Castle.Core.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\NcProgramManager.csproj">
|
|
<Project>{1032188B-3321-42B2-87ED-343BF718CAF5}</Project>
|
|
<Name>NcProgramManager</Name>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="Unit\LicenseValidatorTests.cs" />
|
|
<Compile Include="Unit\NcProgramValidatorTests.cs" />
|
|
<Compile Include="Unit\FanucProgramParsingTests.cs" />
|
|
<Compile Include="Unit\IsoProgramFormatterTests.cs" />
|
|
<Compile Include="Unit\CncMachineFactoryTests.cs" />
|
|
<Compile Include="Unit\FanucMachineTests.cs" />
|
|
<Compile Include="Unit\SiemensMachineTests.cs" />
|
|
<Compile Include="Unit\MitsubishiMachineTests.cs" />
|
|
<Compile Include="Unit\HeidenhainMachineTests.cs" />
|
|
<Compile Include="Integration\Stubs\FtpServerStub.cs" />
|
|
<Compile Include="Integration\Stubs\Lsv2ServerStub.cs" />
|
|
<Compile Include="Integration\HardwareTestHelper.cs" />
|
|
<Compile Include="Integration\SiemensMachineIntegrationTests.cs" />
|
|
<Compile Include="Integration\MitsubishiMachineIntegrationTests.cs" />
|
|
<Compile Include="Integration\HeidenhainMachineIntegrationTests.cs" />
|
|
<Compile Include="Unit\LicenseFileTests.cs" />
|
|
</ItemGroup>
|
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
</Project>
|