blade_runr | R Documentation |
blade_runr()
sets your tests in motion. After setting them up with
blade_setup()
, this function takes a grid of parameters generated by
blade_params()
and iterates over it, executing your functions for each
individual test case.
blade_runr(grid, force = FALSE)
grid |
A grid of test parameters, ideally generated by |
The value of the post_runr function, as specified in blade_setup()
blade_setup( run_name = "test_run", runr = function() 1, ) params <- list( a = seq(1:3), b = 2 ) grid <- blade_params(params) blade_runr(grid)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.