Menu

[r3]: / top_engine_utest_expression / Main.cpp  Maximize  Restore  History

Download this file

38 lines (27 with data), 684 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#include <cstdlib>
#include <iostream>
namespace test_literal1 {
int test(int argc, char *argv[]);
};
namespace test_knowledge_base1 {
int test(int argc, char *argv[]);
};
namespace test_knowledge_base2 {
int test(int argc, char *argv[]);
};
namespace test_knowledge_base3 {
int test(int argc, char *argv[]);
};
namespace test_query_rule1 {
int test(int argc, char *argv[]);
};
int main(int argc, char *argv[])
{
test_literal1::test(argc, argv);
test_knowledge_base1::test(argc, argv);
test_knowledge_base2::test(argc, argv);
test_knowledge_base3::test(argc, argv);
test_query_rule1::test(argc, argv);
std::cout << "\nTEST COMPLETED\n";
return EXIT_SUCCESS;
};
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.