mirror of
https://github.com/rakshasa/rtorrent.git
synced 2026-08-06 02:02:30 +00:00
33 lines
697 B
C++
33 lines
697 B
C++
#include "test/helpers/test_fixture.h"
|
|
|
|
class TestParseOptions : public test_fixture {
|
|
CPPUNIT_TEST_SUITE(TestParseOptions);
|
|
|
|
CPPUNIT_TEST(test_flag_basic);
|
|
CPPUNIT_TEST(test_flag_error);
|
|
|
|
CPPUNIT_TEST(test_flags_basic);
|
|
CPPUNIT_TEST(test_flags_error);
|
|
CPPUNIT_TEST(test_flags_complex);
|
|
|
|
CPPUNIT_TEST(test_flags_print_vector);
|
|
CPPUNIT_TEST(test_flags_print_flags);
|
|
|
|
CPPUNIT_TEST(test_flag_libtorrent);
|
|
|
|
CPPUNIT_TEST_SUITE_END();
|
|
|
|
public:
|
|
void test_flag_basic();
|
|
void test_flag_error();
|
|
|
|
void test_flags_basic();
|
|
void test_flags_error();
|
|
void test_flags_complex();
|
|
|
|
void test_flags_print_vector();
|
|
void test_flags_print_flags();
|
|
|
|
void test_flag_libtorrent();
|
|
};
|