View Source ExUnit.TestModule (ExUnit v1.13.4)
A struct that keeps information about the test module.
It is received by formatters and contains the following fields:
:file
- (since v1.11.0) the file of the test module:name
- the test module name:state
- the test error state (seeExUnit.state/0
):tests
- all tests in this module
Link to this section Summary
Link to this section Types
@type t() :: %ExUnit.TestModule{ file: binary(), name: module(), state: ExUnit.state(), tests: [ExUnit.Test.t()] }