struct trc_test

Overview

Test run More…

#include <trc_db.h>

struct trc_test {
    // fields

    xmlNodePtr node;
    trc_test_iter* parent;
    trc_test_type type;
    bool aux;
    char* name;
    char* path;
    char* notes;
    char* objective;
    trc_test_iters iters;
    trc_users_data users;
    char* filename;
    int file_pos;

    // methods

    TAILQ_ENTRY(trc_test);
};

Detailed Documentation

Test run

Fields

xmlNodePtr node

XML node with this element

trc_test_iter* parent

Back reference

trc_test_type type

Type of the test

bool aux

Is test auxiliary?

char* name

Test name

char* path

Test path

char* notes

Some notes

char* objective

Test objective

trc_test_iters iters

Iterations of the test

trc_users_data users

Users data

char* filename

File in which this test is described in TRC

int file_pos

Number of the test in the list of all its siblings belonging to the same file

Methods

TAILQ_ENTRY(trc_test)

List links