mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-17 09:12:25 +00:00
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8545 d0543943-73ff-0310-b7d9-9358b9ac24b2
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;
|
|
}
|