Popularity
71 Stars
Updated Last
12 Months Ago
Started In
October 2018

SafeTestsets.jl

Build Status Build status codecov

@safetestset puts @testset into a module.

You can use it by

using SafeTestsets
@safetestset "Benchmark Tests" begin include("benchmark_tests.jl") end

which makes a new module whose name is generated by gensym(), or

using SafeTestsets
@safetestset BenchmarkTests = "Benchmark Tests" begin include("benchmark_tests.jl") end

which makes a module named BenchmarkTests.

Required Packages

No packages found.