Skip to content

Commit

Permalink
test(core): add tests
Browse files Browse the repository at this point in the history
  • Loading branch information
AnzhiZhang committed Aug 6, 2024
1 parent 746dbb8 commit 30e8524
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 1 deletion.
Empty file added test/matrices.jl
Empty file.
Empty file added test/metadata.jl
Empty file.
12 changes: 11 additions & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
using TypedMatrices
using Test

const builtin_matrices = list_matrices(Group(:builtin))

@testset "TypedMatrices.jl" begin
# Write your tests here.
include("types.jl")
include("metadata.jl")
include("matrices.jl")

@testset "matrices" begin
for file = readdir("matrices")
include("matrices/$file")
end
end
end
Empty file added test/types.jl
Empty file.

0 comments on commit 30e8524

Please sign in to comment.