You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
400 B
Lua
13 lines
400 B
Lua
--- Helper module containing enumeration of all possible results after
|
|
-- evaluating a property.
|
|
-- @module lqc.property_result
|
|
--- List of possible results after executing property
|
|
-- @table result_enum
|
|
-- @field SUCCESS property succeeded
|
|
-- @field FAILURE property failed
|
|
-- @field SKIPPED property skipped (implies predicate not met)
|
|
return {
|
|
SUCCESS = 1,
|
|
FAILURE = 2,
|
|
SKIPPED = 3,
|
|
} |