4 * @brief Tests to test the Generator class generator_t
9 * Copyright (C) 2005 Jan Hutter, Martin Willi
10 * Hochschule fuer Technik Rapperswil
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by the
14 * Free Software Foundation; either version 2 of the License, or (at your
15 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
19 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
23 #ifndef GENERATOR_TEST_H_
24 #define GENERATOR_TEST_H_
26 #include "../utils/tester.h"
29 * @brief Test function used to test the generator with header payload
32 * @param tester associated tester object
34 void test_generator_with_header_payload(tester_t
*tester
);
37 * @brief Test function used to test the generator with transform attribute payload
40 * @param tester associated tester object
42 void test_generator_with_transform_attribute(tester_t
*tester
);
46 * @brief Test function used to test the generator with transform substructure payload
49 * @param tester associated tester object
51 void test_generator_with_transform_substructure(tester_t
*tester
);
54 * @brief Test function used to test the generator with proposal substructure payload
57 * @param tester associated tester object
59 void test_generator_with_proposal_substructure(tester_t
*tester
);
62 * @brief Test function used to test the generator with SA payload
65 * @param tester associated tester object
67 void test_generator_with_sa_payload(tester_t
*tester
);
70 * @brief Test function used to test the generator with KE payload
73 * @param tester associated tester object
75 void test_generator_with_ke_payload(tester_t
*tester
);
78 * @brief Test function used to test the generator with Notify payload
81 * @param tester associated tester object
83 void test_generator_with_notify_payload(tester_t
*tester
);
86 #endif /*GENERATOR_TEST_H_*/