mirror of
https://github.com/rakshasa/rtorrent.git
synced 2026-08-06 18:22:32 +00:00
15 lines
263 B
C++
15 lines
263 B
C++
#ifndef LIBTORRENT_HELPER_TEST_FIXTURE_H
|
|
#define LIBTORRENT_HELPER_TEST_FIXTURE_H
|
|
|
|
#include <cppunit/TestFixture.h>
|
|
|
|
#include "test/helpers/mock_function.h"
|
|
|
|
class test_fixture : public CppUnit::TestFixture {
|
|
public:
|
|
void setUp();
|
|
void tearDown();
|
|
};
|
|
|
|
#endif
|