Skip to content

Commit

Permalink
add basic test framework
Browse files Browse the repository at this point in the history
  • Loading branch information
mberto79 committed Aug 30, 2024
1 parent cc2f919 commit 6171d71
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
Manifest.toml
test/Manifest.toml
docs/build/*
docs/Manifest
.vscode/*
Expand Down
2 changes: 2 additions & 0 deletions test/Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[deps]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
9 changes: 9 additions & 0 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
using XCALibre
using Test

@testset "XCALibre.jl" begin
# Write your own tests here.
@testset "Dummy tests" begin
@test 2*2 == 4
end
end

0 comments on commit 6171d71

Please sign in to comment.