mirror of
https://github.com/rakshasa/rtorrent.git
synced 2026-08-05 17:52:29 +00:00
9362453391
* Stuff. git-svn-id: svn://rakshasa.no/libtorrent/trunk/rtorrent@1164 e378c898-3ddf-0310-93e7-cc216c733640
27 lines
530 B
C++
27 lines
530 B
C++
#include <cppunit/extensions/HelperMacros.h>
|
|
|
|
#include "rpc/object_storage.h"
|
|
|
|
class ObjectStorageTest : public CppUnit::TestFixture {
|
|
CPPUNIT_TEST_SUITE(ObjectStorageTest);
|
|
CPPUNIT_TEST(test_basics);
|
|
CPPUNIT_TEST(test_conversions);
|
|
CPPUNIT_TEST(test_validate_keys);
|
|
CPPUNIT_TEST(test_access);
|
|
CPPUNIT_TEST_SUITE_END();
|
|
|
|
public:
|
|
void setUp() { }
|
|
void tearDown() {}
|
|
|
|
void test_basics();
|
|
|
|
void test_conversions();
|
|
void test_validate_keys();
|
|
|
|
void test_access();
|
|
|
|
private:
|
|
rpc::object_storage m_storage;
|
|
};
|