1 
2 #include "log.h"
3 
4 #include <string>
5 #include <vector>
6 
7 #include <map>
8 
9 #include <string.h>
10 
11 #include "AmConfig.h"
12 
13 #include "fct.h"      /* FCTX is installed! */
14 
15 #include "AmSipMsg.h"
16 #include "AmSipHeaders.h"
17 
18 #include "fct.h"
19 
FCT_BGN()20 FCT_BGN() {
21   init_logging();
22   log_stderr=true;
23   log_level=3;
24 
25   FCTMF_SUITE_CALL(test_sdp);
26   FCTMF_SUITE_CALL(test_auth);
27   FCTMF_SUITE_CALL(test_headers);
28   FCTMF_SUITE_CALL(test_uriparser);
29   FCTMF_SUITE_CALL(test_jsonarg);
30   FCTMF_SUITE_CALL(test_replaces);
31 } FCT_END();
32 
33 
34 // FCT_BGN() {
35 // FCT_FIXTURE_SUITE_BGN(example_suite) {
36 
37 // FCT_SETUP_BGN() {
38 // } FCT_SETUP_END();
39 
40 // FCT_TEARDOWN_BGN() {
41 // } FCT_TEARDOWN_END();
42 
43 // FCT_TEST_BGN(test_object_basic) {
44 // } FCT_TEST_END();
45 
46 // } FCT_FIXTURE_SUITE_END();
47 
48 // } FCT_END();
49