added explicit "private" visibility specification
moved WebAuthenticationClient.h from public to private
This commit is contained in:
parent
79027ffff8
commit
d48cb7ccce
24 changed files with 102 additions and 54 deletions
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
|
|
||||||
Author : $Author: fgerlits $
|
Author : $Author: fgerlits $
|
||||||
Version : $Revision: 1.2 $
|
Version : $Revision: 1.3 $
|
||||||
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/authentication/src/AuthenticationClientFactory.cxx,v $
|
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/authentication/src/AuthenticationClientFactory.cxx,v $
|
||||||
|
|
||||||
------------------------------------------------------------------------------*/
|
------------------------------------------------------------------------------*/
|
||||||
|
@ -35,7 +35,7 @@
|
||||||
|
|
||||||
#include "LiveSupport/Authentication/AuthenticationClientFactory.h"
|
#include "LiveSupport/Authentication/AuthenticationClientFactory.h"
|
||||||
#include "TestAuthenticationClient.h"
|
#include "TestAuthenticationClient.h"
|
||||||
#include "LiveSupport/Authentication/WebAuthenticationClient.h"
|
#include "WebAuthenticationClient.h"
|
||||||
|
|
||||||
using namespace LiveSupport::Core;
|
using namespace LiveSupport::Core;
|
||||||
using namespace LiveSupport::Authentication;
|
using namespace LiveSupport::Authentication;
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
|
|
||||||
Author : $Author: fgerlits $
|
Author : $Author: fgerlits $
|
||||||
Version : $Revision: 1.1 $
|
Version : $Revision: 1.2 $
|
||||||
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/authentication/src/WebAuthenticationClient.cxx,v $
|
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/authentication/src/WebAuthenticationClient.cxx,v $
|
||||||
|
|
||||||
------------------------------------------------------------------------------*/
|
------------------------------------------------------------------------------*/
|
||||||
|
@ -45,7 +45,7 @@
|
||||||
#include <XmlRpcClient.h>
|
#include <XmlRpcClient.h>
|
||||||
#include <XmlRpcValue.h>
|
#include <XmlRpcValue.h>
|
||||||
|
|
||||||
#include "LiveSupport/Authentication/WebAuthenticationClient.h"
|
#include "WebAuthenticationClient.h"
|
||||||
|
|
||||||
using namespace boost::posix_time;
|
using namespace boost::posix_time;
|
||||||
using namespace XmlRpc;
|
using namespace XmlRpc;
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
|
|
||||||
Author : $Author: fgerlits $
|
Author : $Author: fgerlits $
|
||||||
Version : $Revision: 1.2 $
|
Version : $Revision: 1.3 $
|
||||||
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/authentication/src/WebAuthenticationClientTest.cxx,v $
|
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/authentication/src/WebAuthenticationClientTest.cxx,v $
|
||||||
|
|
||||||
------------------------------------------------------------------------------*/
|
------------------------------------------------------------------------------*/
|
||||||
|
@ -113,6 +113,7 @@ WebAuthenticationClientTest :: firstTest(void)
|
||||||
|
|
||||||
CPPUNIT_ASSERT(!(sessionId = wac->login("Piszkos Fred", "malnaszor")));
|
CPPUNIT_ASSERT(!(sessionId = wac->login("Piszkos Fred", "malnaszor")));
|
||||||
|
|
||||||
|
// TODO: this call writes some garbage to cerr; it should be told not to
|
||||||
sessionId.reset(new SessionId("ceci n'est pas un session ID"));
|
sessionId.reset(new SessionId("ceci n'est pas un session ID"));
|
||||||
CPPUNIT_ASSERT(!wac->logout(sessionId));
|
CPPUNIT_ASSERT(!wac->logout(sessionId));
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
|
|
||||||
Author : $Author: fgerlits $
|
Author : $Author: fgerlits $
|
||||||
Version : $Revision: 1.3 $
|
Version : $Revision: 1.4 $
|
||||||
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/authentication/src/WebAuthenticationClientTest.h,v $
|
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/authentication/src/WebAuthenticationClientTest.h,v $
|
||||||
|
|
||||||
------------------------------------------------------------------------------*/
|
------------------------------------------------------------------------------*/
|
||||||
|
@ -42,7 +42,7 @@
|
||||||
|
|
||||||
#include <cppunit/extensions/HelperMacros.h>
|
#include <cppunit/extensions/HelperMacros.h>
|
||||||
|
|
||||||
#include "LiveSupport/Authentication/WebAuthenticationClient.h"
|
#include "WebAuthenticationClient.h"
|
||||||
|
|
||||||
namespace LiveSupport {
|
namespace LiveSupport {
|
||||||
namespace Authentication {
|
namespace Authentication {
|
||||||
|
@ -61,7 +61,7 @@ using namespace LiveSupport::Core;
|
||||||
* Unit test for the WebAuthenticationClient class.
|
* Unit test for the WebAuthenticationClient class.
|
||||||
*
|
*
|
||||||
* @author $Author: fgerlits $
|
* @author $Author: fgerlits $
|
||||||
* @version $Revision: 1.3 $
|
* @version $Revision: 1.4 $
|
||||||
* @see WebAuthenticationClient
|
* @see WebAuthenticationClient
|
||||||
*/
|
*/
|
||||||
class WebAuthenticationClientTest : public CPPUNIT_NS::TestFixture
|
class WebAuthenticationClientTest : public CPPUNIT_NS::TestFixture
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
|
|
||||||
Author : $Author: fgerlits $
|
Author : $Author: fgerlits $
|
||||||
Version : $Revision: 1.2 $
|
Version : $Revision: 1.3 $
|
||||||
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/AddAudioClipToPlaylistMethodTest.h,v $
|
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/AddAudioClipToPlaylistMethodTest.h,v $
|
||||||
|
|
||||||
------------------------------------------------------------------------------*/
|
------------------------------------------------------------------------------*/
|
||||||
|
@ -63,7 +63,7 @@ using namespace LiveSupport::Core;
|
||||||
* Unit test for the AddAudioClipToPlaylistMethod class.
|
* Unit test for the AddAudioClipToPlaylistMethod class.
|
||||||
*
|
*
|
||||||
* @author $Author: fgerlits $
|
* @author $Author: fgerlits $
|
||||||
* @version $Revision: 1.2 $
|
* @version $Revision: 1.3 $
|
||||||
* @see AddAudioClipToPlaylistMethod
|
* @see AddAudioClipToPlaylistMethod
|
||||||
*/
|
*/
|
||||||
class AddAudioClipToPlaylistMethodTest : public CPPUNIT_NS::TestFixture
|
class AddAudioClipToPlaylistMethodTest : public CPPUNIT_NS::TestFixture
|
||||||
|
@ -72,6 +72,8 @@ class AddAudioClipToPlaylistMethodTest : public CPPUNIT_NS::TestFixture
|
||||||
CPPUNIT_TEST(firstTest);
|
CPPUNIT_TEST(firstTest);
|
||||||
CPPUNIT_TEST_SUITE_END();
|
CPPUNIT_TEST_SUITE_END();
|
||||||
|
|
||||||
|
private:
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The name of the configuration file for the storage client factory.
|
* The name of the configuration file for the storage client factory.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
|
|
||||||
Author : $Author: fgerlits $
|
Author : $Author: fgerlits $
|
||||||
Version : $Revision: 1.4 $
|
Version : $Revision: 1.5 $
|
||||||
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/CreatePlaylistMethodTest.h,v $
|
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/CreatePlaylistMethodTest.h,v $
|
||||||
|
|
||||||
------------------------------------------------------------------------------*/
|
------------------------------------------------------------------------------*/
|
||||||
|
@ -63,7 +63,7 @@ using namespace LiveSupport::Core;
|
||||||
* Unit test for the CreatePlaylistMethod class.
|
* Unit test for the CreatePlaylistMethod class.
|
||||||
*
|
*
|
||||||
* @author $Author: fgerlits $
|
* @author $Author: fgerlits $
|
||||||
* @version $Revision: 1.4 $
|
* @version $Revision: 1.5 $
|
||||||
* @see CreatePlaylistMethod
|
* @see CreatePlaylistMethod
|
||||||
*/
|
*/
|
||||||
class CreatePlaylistMethodTest : public CPPUNIT_NS::TestFixture
|
class CreatePlaylistMethodTest : public CPPUNIT_NS::TestFixture
|
||||||
|
@ -72,6 +72,8 @@ class CreatePlaylistMethodTest : public CPPUNIT_NS::TestFixture
|
||||||
CPPUNIT_TEST(firstTest);
|
CPPUNIT_TEST(firstTest);
|
||||||
CPPUNIT_TEST_SUITE_END();
|
CPPUNIT_TEST_SUITE_END();
|
||||||
|
|
||||||
|
private:
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The name of the configuration file for the storage client factory.
|
* The name of the configuration file for the storage client factory.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
|
|
||||||
Author : $Author: fgerlits $
|
Author : $Author: fgerlits $
|
||||||
Version : $Revision: 1.2 $
|
Version : $Revision: 1.3 $
|
||||||
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/Attic/DeletePlaylistMethodTest.h,v $
|
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/Attic/DeletePlaylistMethodTest.h,v $
|
||||||
|
|
||||||
------------------------------------------------------------------------------*/
|
------------------------------------------------------------------------------*/
|
||||||
|
@ -64,7 +64,7 @@ using namespace LiveSupport::Core;
|
||||||
*
|
*
|
||||||
* @author $Author: maroy, fgerlits
|
* @author $Author: maroy, fgerlits
|
||||||
$
|
$
|
||||||
* @version $Revision: 1.2 $
|
* @version $Revision: 1.3 $
|
||||||
* @see DeletePlaylistMethod
|
* @see DeletePlaylistMethod
|
||||||
*/
|
*/
|
||||||
class DeletePlaylistMethodTest : public CPPUNIT_NS::TestFixture
|
class DeletePlaylistMethodTest : public CPPUNIT_NS::TestFixture
|
||||||
|
@ -74,6 +74,8 @@ class DeletePlaylistMethodTest : public CPPUNIT_NS::TestFixture
|
||||||
CPPUNIT_TEST(negativeTest);
|
CPPUNIT_TEST(negativeTest);
|
||||||
CPPUNIT_TEST_SUITE_END();
|
CPPUNIT_TEST_SUITE_END();
|
||||||
|
|
||||||
|
private:
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The name of the configuration file for the storage client factory.
|
* The name of the configuration file for the storage client factory.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
|
|
||||||
Author : $Author: fgerlits $
|
Author : $Author: fgerlits $
|
||||||
Version : $Revision: 1.2 $
|
Version : $Revision: 1.3 $
|
||||||
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/DisplayAudioClipMethodTest.h,v $
|
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/DisplayAudioClipMethodTest.h,v $
|
||||||
|
|
||||||
------------------------------------------------------------------------------*/
|
------------------------------------------------------------------------------*/
|
||||||
|
@ -63,7 +63,7 @@ using namespace LiveSupport::Core;
|
||||||
* Unit test for the DisplayAudioClipMethod class.
|
* Unit test for the DisplayAudioClipMethod class.
|
||||||
*
|
*
|
||||||
* @author $Author: fgerlits $
|
* @author $Author: fgerlits $
|
||||||
* @version $Revision: 1.2 $
|
* @version $Revision: 1.3 $
|
||||||
* @see DisplayAudioClipMethod
|
* @see DisplayAudioClipMethod
|
||||||
*/
|
*/
|
||||||
class DisplayAudioClipMethodTest : public CPPUNIT_NS::TestFixture
|
class DisplayAudioClipMethodTest : public CPPUNIT_NS::TestFixture
|
||||||
|
@ -73,6 +73,8 @@ class DisplayAudioClipMethodTest : public CPPUNIT_NS::TestFixture
|
||||||
CPPUNIT_TEST(negativeTest);
|
CPPUNIT_TEST(negativeTest);
|
||||||
CPPUNIT_TEST_SUITE_END();
|
CPPUNIT_TEST_SUITE_END();
|
||||||
|
|
||||||
|
private:
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The name of the configuration file for the storage client factory.
|
* The name of the configuration file for the storage client factory.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
|
|
||||||
Author : $Author: fgerlits $
|
Author : $Author: fgerlits $
|
||||||
Version : $Revision: 1.2 $
|
Version : $Revision: 1.3 $
|
||||||
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/DisplayAudioClipsMethodTest.h,v $
|
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/DisplayAudioClipsMethodTest.h,v $
|
||||||
|
|
||||||
------------------------------------------------------------------------------*/
|
------------------------------------------------------------------------------*/
|
||||||
|
@ -63,7 +63,7 @@ using namespace LiveSupport::Core;
|
||||||
* Unit test for the DisplayAudioClipsMethod class.
|
* Unit test for the DisplayAudioClipsMethod class.
|
||||||
*
|
*
|
||||||
* @author $Author: fgerlits $
|
* @author $Author: fgerlits $
|
||||||
* @version $Revision: 1.2 $
|
* @version $Revision: 1.3 $
|
||||||
* @see DisplayAudioClipsMethod
|
* @see DisplayAudioClipsMethod
|
||||||
*/
|
*/
|
||||||
class DisplayAudioClipsMethodTest : public CPPUNIT_NS::TestFixture
|
class DisplayAudioClipsMethodTest : public CPPUNIT_NS::TestFixture
|
||||||
|
@ -72,6 +72,8 @@ class DisplayAudioClipsMethodTest : public CPPUNIT_NS::TestFixture
|
||||||
CPPUNIT_TEST(firstTest);
|
CPPUNIT_TEST(firstTest);
|
||||||
CPPUNIT_TEST_SUITE_END();
|
CPPUNIT_TEST_SUITE_END();
|
||||||
|
|
||||||
|
private:
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The name of the configuration file for the storage client factory.
|
* The name of the configuration file for the storage client factory.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
|
|
||||||
Author : $Author: fgerlits $
|
Author : $Author: fgerlits $
|
||||||
Version : $Revision: 1.2 $
|
Version : $Revision: 1.3 $
|
||||||
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/DisplayPlaylistMethodTest.h,v $
|
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/DisplayPlaylistMethodTest.h,v $
|
||||||
|
|
||||||
------------------------------------------------------------------------------*/
|
------------------------------------------------------------------------------*/
|
||||||
|
@ -63,7 +63,7 @@ using namespace LiveSupport::Core;
|
||||||
* Unit test for the DisplayPlaylistMethod class.
|
* Unit test for the DisplayPlaylistMethod class.
|
||||||
*
|
*
|
||||||
* @author $Author: fgerlits $
|
* @author $Author: fgerlits $
|
||||||
* @version $Revision: 1.2 $
|
* @version $Revision: 1.3 $
|
||||||
* @see DisplayPlaylistMethod
|
* @see DisplayPlaylistMethod
|
||||||
*/
|
*/
|
||||||
class DisplayPlaylistMethodTest : public CPPUNIT_NS::TestFixture
|
class DisplayPlaylistMethodTest : public CPPUNIT_NS::TestFixture
|
||||||
|
@ -73,6 +73,8 @@ class DisplayPlaylistMethodTest : public CPPUNIT_NS::TestFixture
|
||||||
CPPUNIT_TEST(negativeTest);
|
CPPUNIT_TEST(negativeTest);
|
||||||
CPPUNIT_TEST_SUITE_END();
|
CPPUNIT_TEST_SUITE_END();
|
||||||
|
|
||||||
|
private:
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The name of the configuration file for the storage client factory.
|
* The name of the configuration file for the storage client factory.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
|
|
||||||
Author : $Author: fgerlits $
|
Author : $Author: fgerlits $
|
||||||
Version : $Revision: 1.2 $
|
Version : $Revision: 1.3 $
|
||||||
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/DisplayPlaylistsMethodTest.h,v $
|
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/DisplayPlaylistsMethodTest.h,v $
|
||||||
|
|
||||||
------------------------------------------------------------------------------*/
|
------------------------------------------------------------------------------*/
|
||||||
|
@ -63,7 +63,7 @@ using namespace LiveSupport::Core;
|
||||||
* Unit test for the DisplayPlaylistsMethod class.
|
* Unit test for the DisplayPlaylistsMethod class.
|
||||||
*
|
*
|
||||||
* @author $Author: fgerlits $
|
* @author $Author: fgerlits $
|
||||||
* @version $Revision: 1.2 $
|
* @version $Revision: 1.3 $
|
||||||
* @see DisplayPlaylistsMethod
|
* @see DisplayPlaylistsMethod
|
||||||
*/
|
*/
|
||||||
class DisplayPlaylistsMethodTest : public CPPUNIT_NS::TestFixture
|
class DisplayPlaylistsMethodTest : public CPPUNIT_NS::TestFixture
|
||||||
|
@ -72,6 +72,8 @@ class DisplayPlaylistsMethodTest : public CPPUNIT_NS::TestFixture
|
||||||
CPPUNIT_TEST(firstTest);
|
CPPUNIT_TEST(firstTest);
|
||||||
CPPUNIT_TEST_SUITE_END();
|
CPPUNIT_TEST_SUITE_END();
|
||||||
|
|
||||||
|
private:
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The name of the configuration file for the storage client factory.
|
* The name of the configuration file for the storage client factory.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
|
|
||||||
Author : $Author: fgerlits $
|
Author : $Author: fgerlits $
|
||||||
Version : $Revision: 1.2 $
|
Version : $Revision: 1.3 $
|
||||||
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/DisplayScheduleMethodTest.h,v $
|
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/DisplayScheduleMethodTest.h,v $
|
||||||
|
|
||||||
------------------------------------------------------------------------------*/
|
------------------------------------------------------------------------------*/
|
||||||
|
@ -63,7 +63,7 @@ using namespace LiveSupport::Core;
|
||||||
* Unit test for the DisplayScheduleMethod class.
|
* Unit test for the DisplayScheduleMethod class.
|
||||||
*
|
*
|
||||||
* @author $Author: fgerlits $
|
* @author $Author: fgerlits $
|
||||||
* @version $Revision: 1.2 $
|
* @version $Revision: 1.3 $
|
||||||
* @see DisplayScheduleMethod
|
* @see DisplayScheduleMethod
|
||||||
*/
|
*/
|
||||||
class DisplayScheduleMethodTest : public CPPUNIT_NS::TestFixture
|
class DisplayScheduleMethodTest : public CPPUNIT_NS::TestFixture
|
||||||
|
@ -73,6 +73,8 @@ class DisplayScheduleMethodTest : public CPPUNIT_NS::TestFixture
|
||||||
CPPUNIT_TEST(intervalTest);
|
CPPUNIT_TEST(intervalTest);
|
||||||
CPPUNIT_TEST_SUITE_END();
|
CPPUNIT_TEST_SUITE_END();
|
||||||
|
|
||||||
|
private:
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The name of the configuration file for the storage client factory.
|
* The name of the configuration file for the storage client factory.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
|
|
||||||
Author : $Author: fgerlits $
|
Author : $Author: fgerlits $
|
||||||
Version : $Revision: 1.2 $
|
Version : $Revision: 1.3 $
|
||||||
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/GeneratePlayReportMethodTest.h,v $
|
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/GeneratePlayReportMethodTest.h,v $
|
||||||
|
|
||||||
------------------------------------------------------------------------------*/
|
------------------------------------------------------------------------------*/
|
||||||
|
@ -63,7 +63,7 @@ using namespace LiveSupport::Core;
|
||||||
* Unit test for the GeneratePlayReportMethod class.
|
* Unit test for the GeneratePlayReportMethod class.
|
||||||
*
|
*
|
||||||
* @author $Author: fgerlits $
|
* @author $Author: fgerlits $
|
||||||
* @version $Revision: 1.2 $
|
* @version $Revision: 1.3 $
|
||||||
* @see GeneratePlayReportMethod
|
* @see GeneratePlayReportMethod
|
||||||
*/
|
*/
|
||||||
class GeneratePlayReportMethodTest : public CPPUNIT_NS::TestFixture
|
class GeneratePlayReportMethodTest : public CPPUNIT_NS::TestFixture
|
||||||
|
@ -73,6 +73,8 @@ class GeneratePlayReportMethodTest : public CPPUNIT_NS::TestFixture
|
||||||
CPPUNIT_TEST(intervalTest);
|
CPPUNIT_TEST(intervalTest);
|
||||||
CPPUNIT_TEST_SUITE_END();
|
CPPUNIT_TEST_SUITE_END();
|
||||||
|
|
||||||
|
private:
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The name of the configuration file for the storage client factory.
|
* The name of the configuration file for the storage client factory.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
|
|
||||||
Author : $Author: fgerlits $
|
Author : $Author: fgerlits $
|
||||||
Version : $Revision: 1.4 $
|
Version : $Revision: 1.5 $
|
||||||
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/OpenPlaylistForEditingMethodTest.h,v $
|
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/OpenPlaylistForEditingMethodTest.h,v $
|
||||||
|
|
||||||
------------------------------------------------------------------------------*/
|
------------------------------------------------------------------------------*/
|
||||||
|
@ -63,7 +63,7 @@ using namespace LiveSupport::Core;
|
||||||
* Unit test for the OpenPlaylistForEditingMethod class.
|
* Unit test for the OpenPlaylistForEditingMethod class.
|
||||||
*
|
*
|
||||||
* @author $Author: fgerlits $
|
* @author $Author: fgerlits $
|
||||||
* @version $Revision: 1.4 $
|
* @version $Revision: 1.5 $
|
||||||
* @see OpenPlaylistForEditingMethod
|
* @see OpenPlaylistForEditingMethod
|
||||||
*/
|
*/
|
||||||
class OpenPlaylistForEditingMethodTest : public CPPUNIT_NS::TestFixture
|
class OpenPlaylistForEditingMethodTest : public CPPUNIT_NS::TestFixture
|
||||||
|
@ -72,6 +72,8 @@ class OpenPlaylistForEditingMethodTest : public CPPUNIT_NS::TestFixture
|
||||||
CPPUNIT_TEST(firstTest);
|
CPPUNIT_TEST(firstTest);
|
||||||
CPPUNIT_TEST_SUITE_END();
|
CPPUNIT_TEST_SUITE_END();
|
||||||
|
|
||||||
|
private:
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The name of the configuration file for the storage client factory.
|
* The name of the configuration file for the storage client factory.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
|
|
||||||
Author : $Author: fgerlits $
|
Author : $Author: fgerlits $
|
||||||
Version : $Revision: 1.1 $
|
Version : $Revision: 1.2 $
|
||||||
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/PostgresqlPlayLogTest.cxx,v $
|
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/PostgresqlPlayLogTest.cxx,v $
|
||||||
|
|
||||||
------------------------------------------------------------------------------*/
|
------------------------------------------------------------------------------*/
|
||||||
|
@ -89,10 +89,11 @@ PostgresqlPlayLogTest :: setUp(void) throw ()
|
||||||
|
|
||||||
playLog.reset(new PostgresqlPlayLog(cm));
|
playLog.reset(new PostgresqlPlayLog(cm));
|
||||||
playLog->install();
|
playLog->install();
|
||||||
|
}
|
||||||
} catch (std::invalid_argument &e) {
|
catch (std::invalid_argument &e) {
|
||||||
CPPUNIT_FAIL("semantic error in configuration file");
|
CPPUNIT_FAIL("semantic error in configuration file");
|
||||||
} catch (xmlpp::exception &e) {
|
}
|
||||||
|
catch (xmlpp::exception &e) {
|
||||||
CPPUNIT_FAIL("error parsing configuration file");
|
CPPUNIT_FAIL("error parsing configuration file");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -104,7 +105,14 @@ PostgresqlPlayLogTest :: setUp(void) throw ()
|
||||||
void
|
void
|
||||||
PostgresqlPlayLogTest :: tearDown(void) throw ()
|
PostgresqlPlayLogTest :: tearDown(void) throw ()
|
||||||
{
|
{
|
||||||
playLog->uninstall();
|
try {
|
||||||
|
playLog->uninstall();
|
||||||
|
}
|
||||||
|
catch (std::exception &e) {
|
||||||
|
std::string eMsg = "cannot uninstall playlog:\n";
|
||||||
|
eMsg += e.what();
|
||||||
|
CPPUNIT_FAIL(eMsg);
|
||||||
|
}
|
||||||
playLog.reset();
|
playLog.reset();
|
||||||
cm.reset();
|
cm.reset();
|
||||||
}
|
}
|
||||||
|
@ -123,7 +131,8 @@ PostgresqlPlayLogTest :: firstTest(void)
|
||||||
|
|
||||||
try {
|
try {
|
||||||
playLog->addPlayLogEntry(audioClipId, timestamp);
|
playLog->addPlayLogEntry(audioClipId, timestamp);
|
||||||
} catch (std::invalid_argument &e) {
|
}
|
||||||
|
catch (std::invalid_argument &e) {
|
||||||
CPPUNIT_FAIL(e.what());
|
CPPUNIT_FAIL(e.what());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -193,8 +202,8 @@ PostgresqlPlayLogTest :: getPlayLogEntriesTest(void)
|
||||||
entries = playLog->getPlayLogEntries(fromTime, toTime);
|
entries = playLog->getPlayLogEntries(fromTime, toTime);
|
||||||
|
|
||||||
CPPUNIT_ASSERT(entries->size() == 0);
|
CPPUNIT_ASSERT(entries->size() == 0);
|
||||||
|
}
|
||||||
} catch (std::invalid_argument &e) {
|
catch (std::invalid_argument &e) {
|
||||||
CPPUNIT_FAIL(e.what());
|
CPPUNIT_FAIL(e.what());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
|
|
||||||
Author : $Author: fgerlits $
|
Author : $Author: fgerlits $
|
||||||
Version : $Revision: 1.2 $
|
Version : $Revision: 1.3 $
|
||||||
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RemoveAudioClipFromPlaylistMethodTest.h,v $
|
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RemoveAudioClipFromPlaylistMethodTest.h,v $
|
||||||
|
|
||||||
------------------------------------------------------------------------------*/
|
------------------------------------------------------------------------------*/
|
||||||
|
@ -63,7 +63,7 @@ using namespace LiveSupport::Core;
|
||||||
* Unit test for the RemoveAudioClipFromPlaylistMethod class.
|
* Unit test for the RemoveAudioClipFromPlaylistMethod class.
|
||||||
*
|
*
|
||||||
* @author $Author: fgerlits $
|
* @author $Author: fgerlits $
|
||||||
* @version $Revision: 1.2 $
|
* @version $Revision: 1.3 $
|
||||||
* @see RemoveAudioClipFromPlaylistMethod
|
* @see RemoveAudioClipFromPlaylistMethod
|
||||||
*/
|
*/
|
||||||
class RemoveAudioClipFromPlaylistMethodTest : public CPPUNIT_NS::TestFixture
|
class RemoveAudioClipFromPlaylistMethodTest : public CPPUNIT_NS::TestFixture
|
||||||
|
@ -72,6 +72,8 @@ class RemoveAudioClipFromPlaylistMethodTest : public CPPUNIT_NS::TestFixture
|
||||||
CPPUNIT_TEST(firstTest);
|
CPPUNIT_TEST(firstTest);
|
||||||
CPPUNIT_TEST_SUITE_END();
|
CPPUNIT_TEST_SUITE_END();
|
||||||
|
|
||||||
|
private:
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The name of the configuration file for the storage client factory.
|
* The name of the configuration file for the storage client factory.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
|
|
||||||
Author : $Author: fgerlits $
|
Author : $Author: fgerlits $
|
||||||
Version : $Revision: 1.2 $
|
Version : $Revision: 1.3 $
|
||||||
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RemoveFromScheduleMethodTest.h,v $
|
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RemoveFromScheduleMethodTest.h,v $
|
||||||
|
|
||||||
------------------------------------------------------------------------------*/
|
------------------------------------------------------------------------------*/
|
||||||
|
@ -63,7 +63,7 @@ using namespace LiveSupport::Core;
|
||||||
* Unit test for the RemoveFromScheduleMethod class.
|
* Unit test for the RemoveFromScheduleMethod class.
|
||||||
*
|
*
|
||||||
* @author $Author: fgerlits $
|
* @author $Author: fgerlits $
|
||||||
* @version $Revision: 1.2 $
|
* @version $Revision: 1.3 $
|
||||||
* @see RemoveFromScheduleMethod
|
* @see RemoveFromScheduleMethod
|
||||||
*/
|
*/
|
||||||
class RemoveFromScheduleMethodTest : public CPPUNIT_NS::TestFixture
|
class RemoveFromScheduleMethodTest : public CPPUNIT_NS::TestFixture
|
||||||
|
@ -73,6 +73,8 @@ class RemoveFromScheduleMethodTest : public CPPUNIT_NS::TestFixture
|
||||||
CPPUNIT_TEST(negativeTest);
|
CPPUNIT_TEST(negativeTest);
|
||||||
CPPUNIT_TEST_SUITE_END();
|
CPPUNIT_TEST_SUITE_END();
|
||||||
|
|
||||||
|
private:
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The name of the configuration file for the schedule factory.
|
* The name of the configuration file for the schedule factory.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
|
|
||||||
Author : $Author: fgerlits $
|
Author : $Author: fgerlits $
|
||||||
Version : $Revision: 1.2 $
|
Version : $Revision: 1.3 $
|
||||||
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RescheduleMethodTest.h,v $
|
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RescheduleMethodTest.h,v $
|
||||||
|
|
||||||
------------------------------------------------------------------------------*/
|
------------------------------------------------------------------------------*/
|
||||||
|
@ -63,7 +63,7 @@ using namespace LiveSupport::Core;
|
||||||
* Unit test for the RescheduleMethod class.
|
* Unit test for the RescheduleMethod class.
|
||||||
*
|
*
|
||||||
* @author $Author: fgerlits $
|
* @author $Author: fgerlits $
|
||||||
* @version $Revision: 1.2 $
|
* @version $Revision: 1.3 $
|
||||||
* @see RescheduleMethod
|
* @see RescheduleMethod
|
||||||
*/
|
*/
|
||||||
class RescheduleMethodTest : public CPPUNIT_NS::TestFixture
|
class RescheduleMethodTest : public CPPUNIT_NS::TestFixture
|
||||||
|
@ -72,6 +72,8 @@ class RescheduleMethodTest : public CPPUNIT_NS::TestFixture
|
||||||
CPPUNIT_TEST(firstTest);
|
CPPUNIT_TEST(firstTest);
|
||||||
CPPUNIT_TEST_SUITE_END();
|
CPPUNIT_TEST_SUITE_END();
|
||||||
|
|
||||||
|
private:
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The name of the configuration file for the schedule factory.
|
* The name of the configuration file for the schedule factory.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
|
|
||||||
Author : $Author: fgerlits $
|
Author : $Author: fgerlits $
|
||||||
Version : $Revision: 1.2 $
|
Version : $Revision: 1.3 $
|
||||||
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RevertEditedPlaylistMethodTest.h,v $
|
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/RevertEditedPlaylistMethodTest.h,v $
|
||||||
|
|
||||||
------------------------------------------------------------------------------*/
|
------------------------------------------------------------------------------*/
|
||||||
|
@ -63,7 +63,7 @@ using namespace LiveSupport::Core;
|
||||||
* Unit test for the RevertEditedPlaylistMethod class.
|
* Unit test for the RevertEditedPlaylistMethod class.
|
||||||
*
|
*
|
||||||
* @author $Author: fgerlits $
|
* @author $Author: fgerlits $
|
||||||
* @version $Revision: 1.2 $
|
* @version $Revision: 1.3 $
|
||||||
* @see RevertEditedPlaylistMethod
|
* @see RevertEditedPlaylistMethod
|
||||||
*/
|
*/
|
||||||
class RevertEditedPlaylistMethodTest : public CPPUNIT_NS::TestFixture
|
class RevertEditedPlaylistMethodTest : public CPPUNIT_NS::TestFixture
|
||||||
|
@ -72,6 +72,8 @@ class RevertEditedPlaylistMethodTest : public CPPUNIT_NS::TestFixture
|
||||||
CPPUNIT_TEST(firstTest);
|
CPPUNIT_TEST(firstTest);
|
||||||
CPPUNIT_TEST_SUITE_END();
|
CPPUNIT_TEST_SUITE_END();
|
||||||
|
|
||||||
|
private:
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The name of the configuration file for the storage client factory.
|
* The name of the configuration file for the storage client factory.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
|
|
||||||
Author : $Author: fgerlits $
|
Author : $Author: fgerlits $
|
||||||
Version : $Revision: 1.2 $
|
Version : $Revision: 1.3 $
|
||||||
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/SavePlaylistMethodTest.h,v $
|
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/SavePlaylistMethodTest.h,v $
|
||||||
|
|
||||||
------------------------------------------------------------------------------*/
|
------------------------------------------------------------------------------*/
|
||||||
|
@ -63,7 +63,7 @@ using namespace LiveSupport::Core;
|
||||||
* Unit test for the SavePlaylistMethod class.
|
* Unit test for the SavePlaylistMethod class.
|
||||||
*
|
*
|
||||||
* @author $Author: fgerlits $
|
* @author $Author: fgerlits $
|
||||||
* @version $Revision: 1.2 $
|
* @version $Revision: 1.3 $
|
||||||
* @see SavePlaylistMethod
|
* @see SavePlaylistMethod
|
||||||
*/
|
*/
|
||||||
class SavePlaylistMethodTest : public CPPUNIT_NS::TestFixture
|
class SavePlaylistMethodTest : public CPPUNIT_NS::TestFixture
|
||||||
|
@ -72,6 +72,8 @@ class SavePlaylistMethodTest : public CPPUNIT_NS::TestFixture
|
||||||
CPPUNIT_TEST(firstTest);
|
CPPUNIT_TEST(firstTest);
|
||||||
CPPUNIT_TEST_SUITE_END();
|
CPPUNIT_TEST_SUITE_END();
|
||||||
|
|
||||||
|
private:
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The name of the configuration file for the storage client factory.
|
* The name of the configuration file for the storage client factory.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
|
|
||||||
Author : $Author: fgerlits $
|
Author : $Author: fgerlits $
|
||||||
Version : $Revision: 1.2 $
|
Version : $Revision: 1.3 $
|
||||||
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/UpdateFadeInFadeOutMethodTest.h,v $
|
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/UpdateFadeInFadeOutMethodTest.h,v $
|
||||||
|
|
||||||
------------------------------------------------------------------------------*/
|
------------------------------------------------------------------------------*/
|
||||||
|
@ -63,7 +63,7 @@ using namespace LiveSupport::Core;
|
||||||
* Unit test for the UpdateFadeInFadeOutMethod class.
|
* Unit test for the UpdateFadeInFadeOutMethod class.
|
||||||
*
|
*
|
||||||
* @author $Author: fgerlits $
|
* @author $Author: fgerlits $
|
||||||
* @version $Revision: 1.2 $
|
* @version $Revision: 1.3 $
|
||||||
* @see UpdateFadeInFadeOutMethod
|
* @see UpdateFadeInFadeOutMethod
|
||||||
*/
|
*/
|
||||||
class UpdateFadeInFadeOutMethodTest : public CPPUNIT_NS::TestFixture
|
class UpdateFadeInFadeOutMethodTest : public CPPUNIT_NS::TestFixture
|
||||||
|
@ -72,6 +72,8 @@ class UpdateFadeInFadeOutMethodTest : public CPPUNIT_NS::TestFixture
|
||||||
CPPUNIT_TEST(firstTest);
|
CPPUNIT_TEST(firstTest);
|
||||||
CPPUNIT_TEST_SUITE_END();
|
CPPUNIT_TEST_SUITE_END();
|
||||||
|
|
||||||
|
private:
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The name of the configuration file for the storage client factory.
|
* The name of the configuration file for the storage client factory.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
|
|
||||||
Author : $Author: fgerlits $
|
Author : $Author: fgerlits $
|
||||||
Version : $Revision: 1.3 $
|
Version : $Revision: 1.4 $
|
||||||
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/UploadPlaylistMethodTest.h,v $
|
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/UploadPlaylistMethodTest.h,v $
|
||||||
|
|
||||||
------------------------------------------------------------------------------*/
|
------------------------------------------------------------------------------*/
|
||||||
|
@ -63,7 +63,7 @@ using namespace LiveSupport::Core;
|
||||||
* Unit test for the UploadPlaylistMethod class.
|
* Unit test for the UploadPlaylistMethod class.
|
||||||
*
|
*
|
||||||
* @author $Author: fgerlits $
|
* @author $Author: fgerlits $
|
||||||
* @version $Revision: 1.3 $
|
* @version $Revision: 1.4 $
|
||||||
* @see UploadPlaylistMethod
|
* @see UploadPlaylistMethod
|
||||||
*/
|
*/
|
||||||
class UploadPlaylistMethodTest : public CPPUNIT_NS::TestFixture
|
class UploadPlaylistMethodTest : public CPPUNIT_NS::TestFixture
|
||||||
|
@ -73,6 +73,8 @@ class UploadPlaylistMethodTest : public CPPUNIT_NS::TestFixture
|
||||||
CPPUNIT_TEST(overlappingPlaylists);
|
CPPUNIT_TEST(overlappingPlaylists);
|
||||||
CPPUNIT_TEST_SUITE_END();
|
CPPUNIT_TEST_SUITE_END();
|
||||||
|
|
||||||
|
private:
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The name of the configuration file for the storage client factory.
|
* The name of the configuration file for the storage client factory.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
|
|
||||||
Author : $Author: fgerlits $
|
Author : $Author: fgerlits $
|
||||||
Version : $Revision: 1.2 $
|
Version : $Revision: 1.3 $
|
||||||
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/ValidatePlaylistMethodTest.h,v $
|
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/ValidatePlaylistMethodTest.h,v $
|
||||||
|
|
||||||
------------------------------------------------------------------------------*/
|
------------------------------------------------------------------------------*/
|
||||||
|
@ -63,7 +63,7 @@ using namespace LiveSupport::Core;
|
||||||
* Unit test for the ValidatePlaylistMethod class.
|
* Unit test for the ValidatePlaylistMethod class.
|
||||||
*
|
*
|
||||||
* @author $Author: fgerlits $
|
* @author $Author: fgerlits $
|
||||||
* @version $Revision: 1.2 $
|
* @version $Revision: 1.3 $
|
||||||
* @see ValidatePlaylistMethod
|
* @see ValidatePlaylistMethod
|
||||||
*/
|
*/
|
||||||
class ValidatePlaylistMethodTest : public CPPUNIT_NS::TestFixture
|
class ValidatePlaylistMethodTest : public CPPUNIT_NS::TestFixture
|
||||||
|
@ -72,6 +72,8 @@ class ValidatePlaylistMethodTest : public CPPUNIT_NS::TestFixture
|
||||||
CPPUNIT_TEST(firstTest);
|
CPPUNIT_TEST(firstTest);
|
||||||
CPPUNIT_TEST_SUITE_END();
|
CPPUNIT_TEST_SUITE_END();
|
||||||
|
|
||||||
|
private:
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The name of the configuration file for the storage client factory.
|
* The name of the configuration file for the storage client factory.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
|
|
||||||
Author : $Author: fgerlits $
|
Author : $Author: fgerlits $
|
||||||
Version : $Revision: 1.1 $
|
Version : $Revision: 1.2 $
|
||||||
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/Attic/XmlRpcToolsTest.h,v $
|
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/src/Attic/XmlRpcToolsTest.h,v $
|
||||||
|
|
||||||
------------------------------------------------------------------------------*/
|
------------------------------------------------------------------------------*/
|
||||||
|
@ -61,7 +61,7 @@ using namespace LiveSupport::Core;
|
||||||
* Unit test for the XmlRpcTools class.
|
* Unit test for the XmlRpcTools class.
|
||||||
*
|
*
|
||||||
* @author $Author: fgerlits $
|
* @author $Author: fgerlits $
|
||||||
* @version $Revision: 1.1 $
|
* @version $Revision: 1.2 $
|
||||||
* @see XmlRpcTools
|
* @see XmlRpcTools
|
||||||
*/
|
*/
|
||||||
class XmlRpcToolsTest : public CPPUNIT_NS::TestFixture
|
class XmlRpcToolsTest : public CPPUNIT_NS::TestFixture
|
||||||
|
@ -70,6 +70,8 @@ class XmlRpcToolsTest : public CPPUNIT_NS::TestFixture
|
||||||
CPPUNIT_TEST(firstTest);
|
CPPUNIT_TEST(firstTest);
|
||||||
CPPUNIT_TEST_SUITE_END();
|
CPPUNIT_TEST_SUITE_END();
|
||||||
|
|
||||||
|
private:
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Configure a configurable with an XML file.
|
* Configure a configurable with an XML file.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue