I THINK that the single shooter is ok. I can always improve it later
This commit is contained in:
16
julia/test/result.jl
Normal file
16
julia/test/result.jl
Normal file
@@ -0,0 +1,16 @@
|
||||
@testset "Result Construction" begin
|
||||
|
||||
# Test that the standard results can be created
|
||||
result = Result("test_converged")
|
||||
@test result.converged == true
|
||||
@test length(result.ΔVs) == 0
|
||||
@test length(result.start) == 0
|
||||
@test length(result.final) == 0
|
||||
|
||||
result = Result("test_unconverged")
|
||||
@test result.converged == false
|
||||
@test length(result.ΔVs) == 0
|
||||
@test length(result.start) == 0
|
||||
@test length(result.final) == 0
|
||||
|
||||
end
|
||||
Reference in New Issue
Block a user