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