File: test_hash_queue.h

package info (click to toggle)
libtorrent 0.15.7-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 5,152 kB
  • sloc: cpp: 35,007; sh: 4,488; ansic: 4,397; makefile: 575; xml: 163
file content (19 lines) | stat: -rw-r--r-- 405 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include "helpers/test_main_thread.h"

class test_hash_queue : public TestFixtureWithMainAndDiskThread {
  CPPUNIT_TEST_SUITE(test_hash_queue);

  CPPUNIT_TEST(test_single);
  CPPUNIT_TEST(test_multiple);
  CPPUNIT_TEST(test_erase);
  CPPUNIT_TEST(test_erase_stress);

  CPPUNIT_TEST_SUITE_END();

public:
  void test_single();
  void test_multiple();
  void test_erase();
  void test_erase_stress();
};