mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-19 17:57:22 +00:00
30 lines
775 B
C++
30 lines
775 B
C++
|
/*=============================================================================
|
||
|
testclient_dummy
|
||
|
===============================================================================
|
||
|
This is a substitute for testclient.cpp, for use in a test program that is
|
||
|
not linked with the client libraries.
|
||
|
|
||
|
It simply passes the test.
|
||
|
=============================================================================*/
|
||
|
|
||
|
#include <string>
|
||
|
#include <iostream>
|
||
|
|
||
|
#include "tools.hpp"
|
||
|
#include "testclient.hpp"
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
string
|
||
|
clientTestSuite::suiteName() {
|
||
|
return "clientTestSuite";
|
||
|
}
|
||
|
|
||
|
|
||
|
void
|
||
|
clientTestSuite::runtests(unsigned int const indentation) {
|
||
|
|
||
|
cout << string((indentation+1)*2, ' ')
|
||
|
<< "Running dummy test." << endl;
|
||
|
}
|