@@ -95,7 +95,7 @@ Phases are guidelines, not a rigid waterfall. Skip or merge phases when the situ
9595
9696Create xUnit test project in ` tests/CircuitTests/ ` targeting ** net8.0** :
9797- NuGet: ` SpiceSharp ` , ` xunit ` , ` xunit.runner.visualstudio ` , ` Microsoft.NET.Test.Sdk `
98- - Project reference: ` <ProjectReference Include="d:\dev\SpiceSharpParser\ src\ SpiceSharpParser\ SpiceSharpParser.csproj" /> `
98+ - Project reference: ` <ProjectReference Include="../../ src/ SpiceSharpParser/ SpiceSharpParser.csproj" /> `
9999- Create ` CircuitTestHelper.cs ` with: ` ParseAndRead ` , ` RunOP ` , ` RunDC ` , ` RunAC ` , ` RunTran ` , ` GetMeasurements ` , ` AssertMeasurement ` , ` AssertMeasurementSuccess `
100100- Reference ` src/SpiceSharpParser.IntegrationTests/BaseTests.cs ` for the parsing/simulation patterns
101101- Verify with a trivial RC filter test
@@ -695,8 +695,8 @@ RC/RL/RLC filters, LAPLACE transfer-function blocks, amplifier stages (CE/CB/CC/
695695
696696When writing tests, consult these for patterns and inspiration:
697697
698- - ** SpiceSharp** : ` d:\dev\ SpiceSharp\ SpiceSharpTest\ ` — ` BasicExampleTests.cs ` , ` Helper.cs ` , ` Models/ `
699- - ** SpiceSharpParser** : ` d:\dev\SpiceSharpParser\ src\ SpiceSharpParser.IntegrationTests\ ` — ` BaseTests.cs ` , ` Components/ ` , ` DotStatements/ ` , ` AnalogBehavioralModeling/ ` , ` Examples/Circuits/*.cir `
698+ - ** SpiceSharp** : sibling workspace folder ` ../ SpiceSharp/ SpiceSharpTest/ ` — ` BasicExampleTests.cs ` , ` Helper.cs ` , ` Models/ `
699+ - ** SpiceSharpParser** : ` src/ SpiceSharpParser.IntegrationTests/ ` — ` BaseTests.cs ` , ` Components/ ` , ` DotStatements/ ` , ` AnalogBehavioralModeling/ ` , ` Examples/Circuits/*.cir `
700700- ** LAPLACE** : ` src/docs/articles/laplace.md ` , ` src/docs/articles/laplace-basics.md ` , ` src/SpiceSharpParser.IntegrationTests/AnalogBehavioralModeling/LaplaceTests.cs `
701701
702702Key patterns: tolerance-based assertions (RelTol=1e-3, AbsTol=1e-12), reference function comparison, ` .MEAS ` validation, string-array netlist construction.
0 commit comments