summaryrefslogtreecommitdiff
path: root/unittests/Core/StreamCallbackTest.cpp
blob: d3ccd0211a4e12ff98ad11c512459f33d8808cdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//===-- StreamCallbackTest.cpp ----------------------------------*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

#include "lldb/Utility/StreamCallback.h"
#include "gtest/gtest.h"

using namespace lldb;
using namespace lldb_private;

static char test_baton;
static size_t callback_count = 0;
static void TestCallback(const char *data, void *baton) {
  EXPECT_STREQ("Foobar", data);
  EXPECT_EQ(&test_baton, baton);
  ++callback_count;
}

TEST(StreamCallbackTest, Callback) {
  StreamCallback stream(TestCallback, &test_baton);
  stream << "Foobar";
  EXPECT_EQ(1u, callback_count);
}