object
lgtunit
ï
A unit test framework supporting predicate clause coverage, determinism testing, input/output testing, property-based testing, and multiple test dialects.
logtalk_load(lgtunit(loader))
static, context_switching_calls
Usage: Define test objects as extensions of the
lgtunit
object and compile their source files using the compiler optionhook(lgtunit)
.Portability: Deterministic unit tests are currently not available when using Quintus Prolog as the backend compiler.
Known issues: Parameter variables cannot currently be used in the definition of test options.
Public predicatesï
cover/1
ï
Declares entities being tested for which code coverage information should be collected.
static
cover(Entity)
cover(?entity_identifier)
- zero_or_more
run/0
ï
Runs the unit tests, writing the results to the current output stream.
static
run
- one
run/1
ï
Runs a unit test or a list of unit tests, writing the results to the current output stream. Runs the global setup and cleanup steps when defined. Fails when given a partial list of tests or when one of the test identifiers is not valid.
static
run(Tests)
run(++callable)
- zero_or_one
run(++list(callable))
- zero_or_one
run/2
ï
Runs the unit tests, writing the results to the specified file. Mode can be either write
(to create a new file) or append
(to add results to an existing file).
static
run(File,Mode)
run(+atom,+atom)
- one
run_test_sets/1
ï
Runs two or more test sets as a unified set generating a single code coverage report if one is requested. When there is a single test set, it is equivalent to sending the message run/0
to the test set. Trivially succeeds when the argument is an empty list.
static
run_test_sets(TestObjects)
run_test_sets(+list(object))
- one
TestObjects
is a partial list or a list with an element which is a variable:instantiation_error
TestObjects
is neither a partial list nor a list:type_error(list(object),TestObjects)
TestObject
of the TestObjects
list is not an existing object:existence_error(object,TestObject)
test/1
ï
Enumerates, by backtracking, the identifiers of all defined unit tests.
static
test(Identifier)
test(?callable)
- zero_or_more
number_of_tests/1
ï
Number of defined unit tests.
static
number_of_tests(NumerOfTests)
number_of_tests(?integer)
- zero_or_one
deterministic/1
ï
True if the goal succeeds once without leaving choice-points.
static
deterministic(Goal)
deterministic(0)
deterministic(+callable)
- zero_or_one
deterministic/2
ï
Reified version of the deterministic/1
predicate. True if the goal succeeds. Returns a boolean value (true
or false
) indicating if the goal succeeded without leaving choice-points.
static
deterministic(Goal,Deterministic)
deterministic(0,*)
deterministic(+callable,--atom)
- zero_or_one
assertion/1
ï
True if the assertion goal succeeds. Throws an error using the assertion goal as argument if the assertion goal throws an error or fails.
static
assertion(Assertion)
assertion(::)
assertion(@callable)
- one
assertion_failure(Assertion)
assertion_error(Assertion,Error)
assertion/2
ï
True if the assertion goal succeeds. Throws an error using the description as argument if the assertion goal throws an error or fails. The description argument helps to distinguish between different assertions in the same test body.
static
assertion(Description,Assertion)
assertion(*,0)
assertion(+nonvar,@callable)
- one
assertion_failure(Description)
assertion_error(Description,Error)
quick_check/3
ï
Reified version of the quick_check/2
predicate. Reports passed(SequenceSeed,Discarded,Labels)
, failed(Goal,SequenceSeed,TestSeed)
, error(Error,Goal,SequenceSeed,TestSeed)
, or broken(Why,Culprit)
. Goal
is the failed test.
static
quick_check(Template,Result,Options)
quick_check(::,*,::)
quick_check(@callable,-callable,++list(compound))
- one
SequenceSeed
argument: Can be used to re-run the same exact sequence of pseudo-random tests by using thers/1
option after changes to the code being tested.
TestSeed
argument: Can be used to re-run the test that failed by using thers/1
option after changes to the code being tested.
Discarded
argument: Number of generated tests that were discarded for failing to comply a pre-condition specified using thepc/1
option.
Labels
argument: List of pairsLabel-N
whereN
is the number of generated tests that are classified asLabel
by a closure specified using thel/1
option.
broken(Why,Culprit)
result: This result signals a broken setup. For example, an invalid template, a broken pre-condition or label goal, or broken test generation.
quick_check/2
ï
Generates and runs random tests for a predicate given its mode template and a set of options. Fails when a generated test fails printing the test. Also fails on an invalid option, printing the option.
static
quick_check(Template,Options)
quick_check(::,::)
quick_check(@callable,++list(compound))
- zero_or_one
Number of tests: Use the
n(NumberOfTests)
option to specify the number of random tests. Default is 100.Maximum number of shrink operations: Use the
s(MaxShrinks)
option to specify the number of shrink operations when a counter example is found. Default is 64.Type edge cases: Use the
ec(Boolean)
option to specify if type edge cases are tested (before generating random tests). Default istrue
.Starting seed: Use the
rs(Seed)
option to specify the random generator starting seed to be used when generating tests. No default. Seeds should be regarded as opaque terms.Test generation filtering: Use the
pc/1
option to specify a pre-condition closure for filtering generated tests (extended with the test arguments; no default).Generated tests classification: Use the
l/1
option to specify a label closure for classifying the generated tests (extended with the test arguments plus the labels argument; no default). The labelling predicate can return a single test label or a list of test labels.Verbose test generation: Use the
v(Boolean)
option to specify verbose reporting of generated random tests. Default isfalse
.Progress bar: Use the
pb(Boolean,Tick)
option to print a progress bar for the executed tests, advancing at everyTick
tests. Default isfalse
. Only applies when the verbose option is false.
quick_check/1
ï
Generates and runs random tests using default options for a predicate given its mode template. Fails when a generated test fails printing the test.
static
quick_check(Template)
quick_check(@callable)
- zero_or_one
benchmark/2
ï
Benchmarks a goal and returns the total execution time in seconds. Uses CPU clock. Goals that may throw an exception should be wrapped by the catch/3
control construct.
static
benchmark(Goal,Time)
benchmark(0,*)
benchmark(+callable,-float)
- one
benchmark_reified/3
ï
Benchmarks a goal and returns the total execution time in seconds plus its result (success
, failure
, or error(Error))
. Uses CPU clock.
static
benchmark_reified(Goal,Time,Result)
benchmark_reified(0,*,*)
benchmark_reified(+callable,-float,-callable)
- one
benchmark/3
ï
Benchmarks a goal by repeating it the specified number of times and returning the total execution time in seconds. Uses CPU clock. Goals that may throw an exception should be wrapped by the catch/3
control construct.
static
benchmark(Goal,Repetitions,Time)
benchmark(0,*,*)
benchmark(@callable,+positive_integer,-float)
- one
benchmark/4
ï
Benchmarks a goal by repeating it the specified number of times and returning the total execution time in seconds using the given clock (cpu
or wall
). Goals that may throw an exception should be wrapped by the catch/3
control construct.
static
benchmark(Goal,Repetitions,Clock,Time)
benchmark(0,*,*,*)
benchmark(@callable,+positive_integer,+atom,-float)
- one
variant/2
ï
True when the two arguments are a variant of each other. I.e. if is possible to rename the term variables to make them identical. Useful for checking expected test results that contain variables.
static
variant(Term1,Term2)
variant(@term,@term)
- zero_or_one
approximately_equal/2
ï
Compares two numbers for approximate equality given the epsilon
arithmetic constant value using the de facto standard formula abs(Number1 - Number2) =< max(abs(Number1), abs(Number2)) * epsilon
. Type-checked.
static
approximately_equal(Number1,Number2)
approximately_equal(+number,+number)
- zero_or_one
approximately_equal/3
ï
Compares two numbers for approximate equality given a user-defined epsilon value using the de facto standard formula abs(Number1 - Number2) =< max(abs(Number1), abs(Number2)) * Epsilon
. Type-checked.
static
approximately_equal(Number1,Number2,Epsilon)
approximately_equal(+number,+number,+number)
- zero_or_one
Epsilon range: Epsilon should be the
epsilon
arithmetic constant value or a small multiple of it. Only use a larger value if a greater error is expected.Comparison with essential equality: For the same epsilon value, approximate equality is weaker requirement than essential equality.
essentially_equal/3
ï
Compares two numbers for essential equality given an epsilon value using the de facto standard formula abs(Number1 - Number2) =< min(abs(Number1), abs(Number2)) * Epsilon
. Type-checked.
static
essentially_equal(Number1,Number2,Epsilon)
essentially_equal(+number,+number,+number)
- zero_or_one
Comparison with approximate equality: For the same epsilon value, essential equality is a stronger requirement than approximate equality.
tolerance_equal/4
ï
Compares two numbers for close equality given relative and absolute tolerances using the de facto standard formula abs(Number1 - Number2) =< max(RelativeTolerance * max(abs(Number1), abs(Number2)), AbsoluteTolerance)
. Type-checked.
static
tolerance_equal(Number1,Number2,RelativeTolerance,AbsoluteTolerance)
tolerance_equal(+number,+number,+number,+number)
- zero_or_one
=~= / 2
ï
Compares two numbers (or lists of numbers) for approximate equality using 100*epsilon
for the absolute error and, if that fails, 99.999%
accuracy for the relative error. But these precision values may not be adequate for all cases. Type-checked.
static
=~=(Number1,Number2)
=~=(+number,+number)
- zero_or_one
=~=(+list(number),+list(number))
- zero_or_one
epsilon/1
ï
Returns the value of epsilon used in the definition of the (=~=)/2
predicate.
static
epsilon(Epsilon)
epsilon(-float)
- one
Protected predicatesï
run_tests/0
ï
Runs all defined unit tests.
static
run_tests
- one
run_tests/1
ï
Runs all the tests defined in the given file.
static
run_tests(File)
run_tests(+atom)
- one
run_test_set/0
ï
Runs a test set as part of running two or more test sets as a unified set.
static
run_test_set
- one
run_quick_check_tests/5
ï
Runs a QuickCheck test using the given options. Returns the starting seed used to generate the random tests, the number of discarded tests, and the test label statistics.
static
run_quick_check_tests(Template,Options,Seed,Discarded,Labels)
run_quick_check_tests(::,::,*,*,*)
run_quick_check_tests(@callable,+list,--nonvar,--number,--list(pair))
- one_or_error
condition/0
ï
Verifies conditions for running the tests. Defaults to the goal true
.
static
condition
- zero_or_one
setup/0
ï
Setup environment before running the test set. Defaults to the goal true
.
static
setup
- zero_or_one
cleanup/0
ï
Cleanup environment after running the test set. Defaults to the goal true
.
static
cleanup
- zero_or_one
make/1
ï
Make target for automatically running the test set when calling the logtalk_make/1
built-in predicate. No default. Possible values are all
and check
.
static
make(Target)
make(?atom)
- zero_or_one
note/1
ï
Note to be printed after the test results. Defaults to the empty atom.
static
note(Note)
note(?atom)
- zero_or_one
file_path/2
ï
Returns the absolute path for a file path that is relative to the tests object path. When the file path is already an absolute path, it is expanded to resolve any remaining relative file path parts.
static
file_path(File,Path)
file_path(+atom,-atom)
- one
suppress_text_output/0
ï
Suppresses text output. Useful to avoid irrelevant text output from predicates being tested to clutter the test logs.
static
suppress_text_output
- one
suppress_binary_output/0
ï
Suppresses binary output. Useful to avoid irrelevant binary output from predicates being tested to clutter the test logs.
static
suppress_binary_output
- one
set_text_input/3
ï
Creates a temporary file, in the same directory as the tests object, with the given text contents, and opens it for reading referenced by the given alias and using the additional options. If no eof_action/1
option is specified, its value will be the default used by the backend compiler.
static
set_text_input(Alias,Contents,Options)
set_text_input(+atom,+atom,+list(stream_option))
- one
set_text_input(+atom,+list(atom),+list(stream_option))
- one
set_text_input/2
ï
Creates a temporary file, in the same directory as the tests object, with the given text contents, and opens it for reading referenced by the given alias and using the default end-of-file action for the used backend compiler.
static
set_text_input(Alias,Contents)
set_text_input(+atom,+atom)
- one
set_text_input(+atom,+list(atom))
- one
set_text_input/1
ï
Creates a temporary file, in the same directory as the tests object, with the given text contents, opens it for reading using the default end-of-file action for the used backend compiler, and sets the current input stream to the file.
static
set_text_input(Contents)
set_text_input(+atom)
- one
set_text_input(+list(atom))
- one
check_text_input/2
ï
Checks that the temporary file (referenced by the given alias) being read have the expected text contents.
static
check_text_input(Alias,Contents)
check_text_input(+atom,+atom)
- zero_or_one
check_text_input/1
ï
Checks that the temporary file being read have the expected text contents.
static
check_text_input(Contents)
check_text_input(+atom)
- zero_or_one
text_input_assertion/3
ï
Returns an assertion for checking that the temporary file (referenced by the given alias) being read have the expected text contents.
static
text_input_assertion(Alias,Contents,Assertion)
text_input_assertion(+atom,+atom,--callable)
- one
text_input_assertion/2
ï
Returns an assertion for checking that the temporary file being read have the expected text contents.
static
text_input_assertion(Contents,Assertion)
text_input_assertion(+atom,--callable)
- one
clean_text_input/0
ï
Cleans the temporary file used when testing text input.
static
clean_text_input
- one
set_binary_input/3
ï
Creates a temporary file, in the same directory as the tests object, with the given binary contents, and opens it for reading referenced by the given alias and using the additional options. If no eof_action/1
option is specified, its value will be the default used by the backend compiler.
static
set_binary_input(Alias,Bytes,Options)
set_binary_input(+atom,+list(byte),+list(stream_option))
- one
set_binary_input/2
ï
Creates a temporary file, in the same directory as the tests object, with the given binary contents, and opens it for reading referenced by the given alias and using the default end-of-file action for the used backend compiler.
static
set_binary_input(Alias,Bytes)
set_binary_input(+atom,+list(byte))
- one
set_binary_input/1
ï
Creates a temporary file, in the same directory as the tests object, with the given binary contents, and opens it for reading using the default end-of-file action for the used backend compiler, and sets the current input stream to the file.
static
set_binary_input(Bytes)
set_binary_input(+list(byte))
- one
check_binary_input/2
ï
Checks that the temporary file (referenced by the given alias) being read have the expected binary contents.
static
check_binary_input(Alias,Bytes)
check_binary_input(+atom,+list(byte))
- zero_or_one
check_binary_input/1
ï
Checks that the temporary file being read have the expected binary contents.
static
check_binary_input(Bytes)
check_binary_input(+list(byte))
- zero_or_one
binary_input_assertion/3
ï
Returns an assertion for checking that the temporary file (referenced by the given alias) being read have the expected binary contents.
static
binary_input_assertion(Alias,Bytes,Assertion)
binary_input_assertion(+atom,+list(byte),--callable)
- one
binary_input_assertion/2
ï
Returns an assertion for checking that the temporary file being read have the expected binary contents.
static
binary_input_assertion(Bytes,Assertion)
binary_input_assertion(+list(byte),--callable)
- one
clean_binary_input/0
ï
Cleans the temporary file used when testing binary input.
static
clean_binary_input
- one
set_text_output/3
ï
Creates a temporary file, in the same directory as the tests object, with the given text contents, and opens it for writing referenced by the given alias and using the additional options.
static
set_text_output(Alias,Contents,Options)
set_text_output(+atom,+atom,+list(stream_option))
- one
set_text_output(+atom,+list(atom),+list(stream_option))
- one
set_text_output/2
ï
Creates a temporary file, in the same directory as the tests object, with the given text contents, and referenced by the given alias.
static
set_text_output(Alias,Contents)
set_text_output(+atom,+atom)
- one
set_text_output(+atom,+list(atom))
- one
set_text_output/1
ï
Creates a temporary file, in the same directory as the tests object, with the given text contents, and sets the current output stream to the file.
static
set_text_output(Contents)
set_text_output(+atom)
- one
set_text_output(+list(atom))
- one
check_text_output/3
ï
Checks that the temporary file (open with the given options and alias in the same directory as the tests object) being written have the expected text contents.
static
check_text_output(Alias,Contents,Options)
check_text_output(+atom,+atom,+list(stream_option))
- zero_or_one
check_text_output/2
ï
Checks that the temporary file (open with default options and alias in the same directory as the tests object) being written have the expected text contents.
static
check_text_output(Alias,Contents)
check_text_output(+atom,+atom)
- zero_or_one
check_text_output/1
ï
Checks that the temporary file being written have the expected text contents.
static
check_text_output(Contents)
check_text_output(+atom)
- zero_or_one
text_output_assertion/4
ï
Returns an assertion for checking that the temporary file (open with the given options and alias in the same directory as the tests object) being written have the expected text contents.
static
text_output_assertion(Alias,Contents,Options,Assertion)
text_output_assertion(+atom,+atom,+list(stream_option),--callable)
- one
text_output_assertion/3
ï
Returns an assertion for checking that the temporary file (open with default options and alias in the same directory as the tests object) being written have the expected text contents.
static
text_output_assertion(Alias,Contents,Assertion)
text_output_assertion(+atom,+atom,--callable)
- one
text_output_assertion/2
ï
Returns an assertion for checking that the temporary file (open with default options in the same directory as the tests object) being written have the expected text contents.
static
text_output_assertion(Contents,Assertion)
text_output_assertion(+atom,--callable)
- one
text_output_contents/3
ï
Returns the contents of the temporary file (open with the given options and alias in the same directory as the tests object) being written.
static
text_output_contents(Alias,Contents,Options)
text_output_contents(+atom,-list(character),+list(stream_option))
- one
text_output_contents/2
ï
Returns the contents of the temporary file (open with default options and alias in the same directory as the tests object) being written.
static
text_output_contents(Alias,Contents)
text_output_contents(+atom,-list(character))
- one
text_output_contents/1
ï
Returns the contents of the temporary file (open with default options in the same directory as the tests object) being written.
static
text_output_contents(Contents)
text_output_contents(-list(character))
- one
clean_text_output/0
ï
Cleans the temporary file used when testing text output.
static
clean_text_output
- one
set_binary_output/3
ï
Creates a temporary file, in the same directory as the tests object, with the given binary contents, and opens it for writing referenced by the given alias and using the additional options.
static
set_binary_output(Alias,Contents,Options)
set_binary_output(+atom,+list(byte),+list(stream_option))
- one
set_binary_output/2
ï
Creates a temporary file, in the same directory as the tests object, with the given binary contents, and opens it for writing referenced with the given alias.
static
set_binary_output(Alias,Bytes)
set_binary_output(+atom,+list(byte))
- one
set_binary_output/1
ï
Creates a temporary file, in the same directory as the tests object, with the given binary contents, and sets the current output stream to the file.
static
set_binary_output(Bytes)
set_binary_output(+list(byte))
- one
check_binary_output/2
ï
Checks that the temporary file (referenced by the given alias) have the expected binary contents.
static
check_binary_output(Alias,Bytes)
check_binary_output(+atom,+list(byte))
- zero_or_one
check_binary_output/1
ï
Checks that the temporary file (open in the same directory as the tests object) have the expected binary contents.
static
check_binary_output(Bytes)
check_binary_output(+list(byte))
- zero_or_one
binary_output_assertion/3
ï
Returns an assertion for checking that the temporary file (referenced by the given alias) have the expected binary contents.
static
binary_output_assertion(Alias,Bytes,Assertion)
binary_output_assertion(+atom,+list(byte),--callable)
- one
binary_output_assertion/2
ï
Returns an assertion for checking that the temporary file (open in the same directory as the tests object) have the expected binary contents.
static
binary_output_assertion(Bytes,Assertion)
binary_output_assertion(+list(byte),--callable)
- one
binary_output_contents/2
ï
Returns the binary contents of the temporary file (referenced by the given alias) being written.
static
binary_output_contents(Alias,Bytes)
binary_output_contents(+atom,-list(byte))
- one
binary_output_contents/1
ï
Returns the binary contents of the temporary file being written.
static
binary_output_contents(Bytes)
binary_output_contents(-list(byte))
- one
clean_binary_output/0
ï
Cleans the temporary file used when testing binary output.
static
clean_binary_output
- one
create_text_file/3
ï
Creates a text file with the given contents. The file is open for writing using the given options. Relative file paths are interpreted as relative to the tests object path.
static
create_text_file(File,Contents,Options)
create_text_file(+atom,+atom,+list(stream_option))
- one
create_text_file(+atom,+list(atom),+list(stream_option))
- one
create_text_file/2
ï
Creates a text file with the given contents. The file is open for writing using default options. Relative file paths are interpreted as relative to the tests object path.
static
create_text_file(File,Contents)
create_text_file(+atom,+atom)
- one
create_text_file(+atom,+list(atom))
- one
create_binary_file/2
ï
Creates a binary file with the given contents. Relative file paths are interpreted as relative to the tests object path.
static
create_binary_file(File,Bytes)
create_binary_file(+atom,+list(byte))
- one
check_text_file/3
ï
Checks that the contents of a text file match the expected contents. The file is open for reading using the given options. Relative file paths are interpreted as relative to the tests object path.
static
check_text_file(File,Contents,Options)
check_text_file(+atom,+atom,+list(stream_option))
- zero_or_one
check_text_file/2
ï
Checks that the contents of a text file (open for reading using default options) match the expected contents. Relative file paths are interpreted as relative to the tests object path.
static
check_text_file(File,Contents)
check_text_file(+atom,+atom)
- zero_or_one
text_file_assertion/4
ï
Returns an assertion for checking that the given file have the expected text contents. The file is open for reading using the given options. Relative file paths are interpreted as relative to the tests object path.
static
text_file_assertion(File,Contents,Options,Assertion)
text_file_assertion(+atom,+atom,+list(stream_option),--callable)
- one
text_file_assertion/3
ï
Returns an assertion for checking that the given file have the expected text contents. The file is open for reading using default options. Relative file paths are interpreted as relative to the tests object path.
static
text_file_assertion(File,Contents,Assertion)
text_file_assertion(+atom,+atom,--callable)
- one
check_binary_file/2
ï
Checks the contents of a binary file match the expected contents. Relative file paths are interpreted as relative to the tests object path.
static
check_binary_file(File,Bytes)
check_binary_file(+atom,+list(byte))
- zero_or_one
binary_file_assertion/3
ï
Returns an assertion for checking that the given file have the expected binary contents. Relative file paths are interpreted as relative to the tests object path.
static
binary_file_assertion(File,Bytes,Assertion)
binary_file_assertion(+atom,+list(byte),--callable)
- one
clean_file/1
ï
Closes any existing stream associated with the file and deletes the file if it exists. Relative file paths are interpreted as relative to the tests object path.
static
clean_file(File)
clean_file(+atom)
- one
clean_directory/1
ï
Deletes an empty directory if it exists. Relative directory paths are interpreted as relative to the tests object path.
static
clean_directory(Directory)
clean_directory(+atom)
- one
closed_input_stream/2
ï
Opens a temporary file in the same directory as the tests object with the given options for reading, closes it, and returns its stream handle.
static
closed_input_stream(Stream,Options)
closed_input_stream(-stream,+list(stream_option))
- one
closed_output_stream/2
ï
Opens a temporary file in the same directory as the tests object with the given options for writing, closes it, and returns its stream handle.
static
closed_output_stream(Stream,Options)
closed_output_stream(-stream,+list(stream_option))
- zero_or_one
stream_position/1
ï
Returns a syntactically valid stream position by opening a temporary file in the same directory as the tests object.
static
stream_position(Position)
stream_position(-stream_position)
- one
test/2
ï
Table of defined tests.
static
test(Identifier,Test)
test(?callable,?compound)
- zero_or_more
Private predicatesï
running_test_sets_/0
ï
Internal flag used when running two or more test sets as a unified set.
dynamic
running_test_sets_
- zero_or_one
test/3
ï
Compiled unit tests. The list of variables is used to ensure variable sharing between a test with its test options.
static
test(Identifier,Variables,Outcome)
test(?callable,?list(variable),?nonvar)
- zero_or_more
auxiliary_predicate_counter_/1
ï
Counter for generating unique auxiliary predicate names.
dynamic
auxiliary_predicate_counter_(Counter)
auxiliary_predicate_counter_(?integer)
- one_or_more
test_/2
ï
Table of compiled tests.
dynamic
test_(Identifier,Test)
test_(?callable,?compound)
- zero_or_more
selected_test_/1
ï
Table of selected tests for execution.
dynamic
selected_test_(Identifier)
selected_test_(?callable)
- zero_or_more
skipped_/1
ï
Counter for skipped tests.
dynamic
skipped_(Counter)
skipped_(?integer)
- zero_or_one
passed_/3
ï
Counter and total time for passed tests.
dynamic
passed_(Counter,CPUTime,WallTime)
passed_(?integer,-float,-float)
- zero_or_one
failed_/3
ï
Counter and total time for failed tests.
dynamic
failed_(Counter,CPUTime,WallTime)
failed_(?integer,-float,-float)
- zero_or_one
flaky_/1
ï
Counter for failed tests that are marked as flaky.
dynamic
flaky_(Counter)
flaky_(?integer)
- zero_or_one
fired_/3
ï
Fired clauses when running the unit tests.
dynamic
fired_(Entity,Predicate,Clause)
fired_(?entity_identifier,?predicate_indicator,?integer)
- zero_or_more
covered_/4
ï
Auxiliary predicate for collecting statistics on clause coverage.
dynamic
covered_(Entity,Predicate,Covered,Total)
covered_(?entity_identifier,?callable,?integer,?integer)
- zero_or_more
Operatorsï
op(700,xfx,=~=)
ï
public