Skip to content

Commit

Permalink
missed one
Browse files Browse the repository at this point in the history
  • Loading branch information
palday committed Sep 6, 2023
1 parent e09ef11 commit 107b250
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions test/regressionmodel.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,6 @@ using StatsAPI: RegressionModel, crossmodelmatrix, vif
struct MyRegressionModel <: RegressionModel
end

StatsAPI.modelmatrix(::MyRegressionModel) = [1 2; 3 4]
StatsAPI.vcov(::MyRegressionModel) = [1 0; 0 1]

struct MyRegressionModel2 <: RegressionModel
end

StatsAPI.modelmatrix(::MyRegressionModel2) = [1 2; 1 2]
StatsAPI.vcov(::MyRegressionModel2) = [1 0; 0 1]

struct MyRegressionModel3 <: RegressionModel
end

StatsAPI.modelmatrix(::MyRegressionModel3) = [1 2 3; 1 2 3]
StatsAPI.vcov(::MyRegressionModel3) = [1 0 0; 0 1 0; 0 0 1]


@testset "TestRegressionModel" begin
m = MyRegressionModel()

Expand Down

0 comments on commit 107b250

Please sign in to comment.