Packages

Property-based testing and metamorphic testing combinator library for Gleam

Current section

Files

Jump to
metamon include metamon@command_Command.hrl
Raw

include/metamon@command_Command.hrl

-record(command, {
name :: binary(),
precondition :: fun((any()) -> boolean()),
next_model :: fun((any()) -> any()),
run :: fun((any()) -> {ok, nil} | {error, binary()})
}).