mirror of
https://github.com/rakshasa/rtorrent.git
synced 2026-08-17 23:52:30 +00:00
8622100e09
git-svn-id: svn://rakshasa.no/libtorrent/trunk/rtorrent@1149 e378c898-3ddf-0310-93e7-cc216c733640
18 lines
370 B
C++
18 lines
370 B
C++
#include <cppunit/extensions/HelperMacros.h>
|
|
|
|
#include "rpc/command_new_slot.h"
|
|
|
|
class CommandSlotTest : public CppUnit::TestFixture {
|
|
CPPUNIT_TEST_SUITE(CommandSlotTest);
|
|
CPPUNIT_TEST(test_basics);
|
|
CPPUNIT_TEST(test_type_validity);
|
|
CPPUNIT_TEST_SUITE_END();
|
|
|
|
public:
|
|
void setUp() {}
|
|
void tearDown() {}
|
|
|
|
void test_basics();
|
|
void test_type_validity();
|
|
};
|