This no longer works with Elixir 1.15 right now.
This library support parameterized test with test_with_params macro.
testmacro provided by ExUnit.Case and ExUnit.CaseTemplateCallbacklikesetupprovided by ExUnit.Callback
Clone this repository and run test with mix test.
You can see some example in test/ex_parameterized_*.exs
Please see module docs.
First, add Reporter to your mix.exs dependencies:
def deps do
[
{:ex_parameterized, "~> 1.3.7"}
]
endand run $ mix deps.get.
Should set use ExUnit.Parameterized in module.
defmodule MyExampleTest do
use ExUnit.Case, async: true
use ExUnit.Parameterized # Required
test_with_params "add params", # description
fn (a, b, expected) -> # test case
assert a + b == expected
end do
[
{1, 2, 3}, # parameters
"description": {1, 4, 5}, # parameters with description
]
end
end