UserInterface/RB_Option_Test [ Structures ]

FUNCTION

A test specification for options. This stores information about the kind of test and the options it applies to, and the message that is given to the user.

SOURCE

struct RB_Option_Test
{
    /* tests are stored in a linked list */
    struct RB_Option_Test *next;
    /* the group of options the test applies to. */
    struct RB_Option_Name *option_group;
    /* the kind of test */
    Option_Test_Kind    kind;
    /* More information for the user */
    char               *more_information;       /* TODO Fill and use */

    Option_Error_Severity severity;
};