initial load of upstream version 1.06.32
[xmlrpc-c] / src / cpp / test / testclient_dummy.cpp
1 /*=============================================================================
2                                   testclient_dummy
3 ===============================================================================
4   This is a substitute for testclient.cpp, for use in a test program that is
5   not linked with the client libraries.
6
7   It simply passes the test.
8 =============================================================================*/
9
10 #include <string>
11 #include <iostream>
12
13 #include "tools.hpp"
14 #include "testclient.hpp"
15
16 using namespace std;
17
18 string
19 clientTestSuite::suiteName() {
20     return "clientTestSuite";
21 }
22
23
24 void
25 clientTestSuite::runtests(unsigned int const indentation) {
26
27     cout << string((indentation+1)*2, ' ') 
28          << "Running dummy test." << endl;
29 }