libtasks Documentation  1.6
test_disk_io_task.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2013-2014 ADTECH GmbH
3  * Licensed under MIT (https://github.com/adtechlabs/libtasks/blob/master/COPYING)
4  *
5  * Author: Andreas Pohl
6  */
7 
8 #include <cppunit/TestCase.h>
9 #include <cppunit/TestFixture.h>
10 #include <cppunit/extensions/HelperMacros.h>
11 
12 #include <atomic>
13 
14 class test_disk_io_task : public CppUnit::TestFixture {
19 
20  public:
21  void setUp() {}
22  void tearDown() {}
23 
24  protected:
25  void write();
26  void read();
27 
28  private:
29  uint16_t m_total = 500;
30 };
CPPUNIT_TEST_SUITE(test_disk_io_task)