mirror of
https://github.com/rakshasa/rtorrent.git
synced 2026-08-06 18:22:32 +00:00
15 lines
271 B
C++
15 lines
271 B
C++
#include "test/helpers/test_fixture.h"
|
|
|
|
class TestCommand : public test_fixture {
|
|
CPPUNIT_TEST_SUITE(TestCommand);
|
|
|
|
CPPUNIT_TEST(test_stack);
|
|
CPPUNIT_TEST(test_stack_double);
|
|
|
|
CPPUNIT_TEST_SUITE_END();
|
|
|
|
public:
|
|
void test_stack();
|
|
void test_stack_double();
|
|
};
|