blob: 4bdc2eb6b70736f1ea77c4c60551ff255d6db307 [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SRC_DEVELOPER_DEBUG_SHARED_TEST_WITH_LOOP_H_
#define SRC_DEVELOPER_DEBUG_SHARED_TEST_WITH_LOOP_H_
#include <lib/syslog/cpp/macros.h>
#include <gtest/gtest.h>
#include "src/developer/debug/shared/platform_message_loop.h"
namespace debug {
// This class is to be used as a base class for tests requiring a MessageLoop
// be set up to run them. Derive from it and then use that:
//
// namespace {
// MyTest : public TestWithLoop {};
// } // namespace
//
// TEST_F(MyTest, Foo) {
// loop().Run();
// ...
// }
class TestWithLoop : public testing::Test {
public:
TestWithLoop() {
std::string error_message;
bool success = loop_.Init(&error_message);
FX_CHECK(success) << error_message;
}
~TestWithLoop() { loop_.Cleanup(); }
MessageLoop& loop() { return loop_; }
private:
PlatformMessageLoop loop_;
};
} // namespace debug
#endif // SRC_DEVELOPER_DEBUG_SHARED_TEST_WITH_LOOP_H_