Skip to content

Commit

Permalink
Test verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
Johannes Nägele committed Oct 29, 2023
1 parent 1ce7e2f commit 0734756
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,20 @@ using Test
end
end

@testset "Verbose" begin
let eqs = @equations begin
Y = C + G
end
model(
endos = @variables(Y),
exos = @variables(C, G),
params = @variables(),
eqs = eqs,
verbose = true
)
end
end

@testset "Default models" begin
sim = Consistent.SIM()
@test sim[:model].exogenous_variables.variables == [:G]
Expand Down

0 comments on commit 0734756

Please sign in to comment.