Popularity
4.1
Declining
Activity
0.0
Stable
28
3
7

Monthly Downloads: 14,303
Programming language: Elixir
License: MIT License
Tags: Testing    
Latest version: v1.3.7

ex_parameterized alternatives and similar packages

Based on the "Testing" category.
Alternatively, view ex_parameterized alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of ex_parameterized or a related project?

Add another 'Testing' Package

README

ExParameterized

Elixir CI

Description

This library support parameterized test with test_with_params macro.

Support

  • test macro provided by ExUnit.Case and ExUnit.CaseTemplate
  • Callback like setup provided by ExUnit.Callback

Demo

Clone this repository and run test with mix test. You can see some example in test/ex_parameterized_*.exs

Usage

Please see module docs.

Install

First, add Reporter to your mix.exs dependencies:

def deps do
  [
    {:ex_parameterized, "~> 1.3.7"}
  ]
end

and run $ mix deps.get.

QuickUse

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

Licence

MIT


*Note that all licence references and agreements mentioned in the ex_parameterized README section above are relevant to that project's source code only.