I THINK that the single shooter is ok. I can always improve it later

This commit is contained in:
rconnorjohnstone
2021-06-17 23:36:50 -06:00
parent 2c39c34f01
commit 966f954528
13 changed files with 170 additions and 61 deletions

16
julia/test/result.jl Normal file
View 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