Skip to content

Commit

Permalink
remove tests with a single argument
Browse files Browse the repository at this point in the history
  • Loading branch information
yunzli committed Oct 19, 2023
1 parent bcc7819 commit 025c8a8
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions test/univariate/continuous/loglogistic.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,12 @@ using Test

@test round(pdf(LogLogistic(), -1), digits=6) == 0.0
@test round(pdf(LogLogistic(), 1), digits=6) == 0.25
@test round(pdf(LogLogistic(2), 2), digits=6) == 0.125
@test round(pdf(LogLogistic(2,2), 1), digits=6) == 0.32

@test round(cdf(LogLogistic(), -1), digits=6) == 0.0
@test round(cdf(LogLogistic(), 1), digits=6) == 0.5
@test round(cdf(LogLogistic(2), 3), digits=6) == 0.6
@test round(cdf(LogLogistic(2,2), 4), digits=6) == 0.8

@test round(ccdf(LogLogistic(2), 3), digits=6) == 0.4
@test round(ccdf(LogLogistic(2,2), 4), digits=6) == 0.2

@test round(logpdf(LogLogistic(), -1), digits=6) == -Inf
Expand Down

0 comments on commit 025c8a8

Please sign in to comment.