File tree Expand file tree Collapse file tree 2 files changed +17
-2
lines changed
Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -20,11 +20,10 @@ cd("..")
2020println (" Running tests..." )
2121
2222@testset verbose = true " Testing VortexStepMethod..." begin
23-
24-
2523 if build_is_production_build
2624 include (" bench.jl" )
2725 end
26+ include (" test_settings.jl" )
2827 include (" test_bound_filament.jl" )
2928 include (" test_panel.jl" )
3029 include (" test_semi_infinite_filament.jl" )
Original file line number Diff line number Diff line change 1+ using Pkg
2+ if ! (" Test" ∈ keys (Pkg. project (). dependencies))
3+ using TestEnv; TestEnv. activate ()
4+ end
5+
6+ using VortexStepMethod
7+ using Test
8+
9+ @testset " Test settings.jl" begin
10+ vss = vs (" vsm_settings_dual.yaml" )
11+ @test vss isa VSMSettings
12+ @test vss. solver_settings isa SolverSettings
13+ @test vss. wings isa Vector{WingSettings}
14+ @test length (vss. wings) == 2
15+ end
16+ nothing
You can’t perform that action at this time.
0 commit comments