Skip to content

Commit

Permalink
set tests more verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
jbytecode committed Jan 10, 2025
1 parent 4c2afed commit b0fa26d
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion test/testassignment.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@testset "Assignment Problem" begin
@testset "Assignment Problem" verbose = true begin

@testset "Simple Assigment Problem" begin
mat = [
Expand Down
2 changes: 1 addition & 1 deletion test/testcpm.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@testset "CPM" begin
@testset "CPM" verbose = true begin

@testset "earliest finishing times of activities" begin
A = CpmActivity("A", 3)
Expand Down
2 changes: 1 addition & 1 deletion test/testgame.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@testset "Game Test" begin
@testset "Game Test" verbose = true begin
@testset "Two-players zero-sum game example" begin
tol = 0.00001

Expand Down
2 changes: 1 addition & 1 deletion test/testjump.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@testset "JuMP and HiGHS" begin
@testset "JuMP and HiGHS" verbose = true begin

eps = 0.001

Expand Down
2 changes: 1 addition & 1 deletion test/testknapsack.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@testset "Knapsack" begin
@testset "Knapsack" verbose = true begin

@testset "Problem 1" begin
values = [1, 2, 3, 4, 5]
Expand Down
2 changes: 1 addition & 1 deletion test/testlatex.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@testset "Latex converter" begin
@testset "Latex converter" verbose = true begin

@testset "Transportation Table to Latex" begin

Expand Down
2 changes: 1 addition & 1 deletion test/testmaximumflow.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@testset "Maximum Flow" begin
@testset "Maximum Flow" verbose = true begin
@testset "Basic Maximum Flow example" begin
# x12 = 20
# x13 = 30
Expand Down
2 changes: 1 addition & 1 deletion test/testmst.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@testset "Minimum Spanning Tree" begin
@testset "Minimum Spanning Tree" verbose = true begin

@testset "hasloop()" begin
@testset "Empty network" begin
Expand Down
2 changes: 1 addition & 1 deletion test/testpert.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@testset "Pert" begin
@testset "Pert" verbose = true begin
@testset "Basic Pert" begin
A = PertActivity("A", 1, 2, 3)
B = PertActivity("B", 3, 3, 3)
Expand Down
2 changes: 1 addition & 1 deletion test/testpmedian.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@testset "p-median" begin
@testset "p-median" verbose = true begin

@testset "2-d example" begin
coords = Float64[
Expand Down
2 changes: 1 addition & 1 deletion test/testshortestpath.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@testset "Shortest Path" begin
@testset "Shortest Path" verbose = true begin

@testset "Simple Problem 1" begin

Expand Down
2 changes: 1 addition & 1 deletion test/testtransportation.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@testset "Transportation" begin
@testset "Transportation" verbose = true begin

@testset "Balance Check - Demand > Supply" begin
t = TransportationProblem(
Expand Down
2 changes: 1 addition & 1 deletion test/testutility.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using OperationsResearchModels.Utility

@testset "Utility" begin
@testset "Utility" verbose = true begin

@testset "numround" begin
@test numround(123.123456789) == 123.123
Expand Down

0 comments on commit b0fa26d

Please sign in to comment.