summaryrefslogtreecommitdiff
path: root/klm/util/pcqueue_test.cc
blob: 22ed2c6f38b65df7fef990e6661af0e92e9f4783 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include "util/pcqueue.hh"

#define BOOST_TEST_MODULE PCQueueTest
#include <boost/test/unit_test.hpp>

namespace util {
namespace {

BOOST_AUTO_TEST_CASE(SingleThread) {
  PCQueue<int> queue(10);
  for (int i = 0; i < 10; ++i) {
    queue.Produce(i);
  }
  for (int i = 0; i < 10; ++i) {
    BOOST_CHECK_EQUAL(i, queue.Consume());
  }
}

}
} // namespace util