blob: aabdd2d356f9ba9c3e8e9eb9df2ddac2444718d1 [file] [log] [blame]
brians343bc112013-02-10 01:53:46 +00001#include "aos/common/queue.h"
2
3namespace aos {
4namespace common {
5namespace testing {
6
7class GlobalCoreInstance {
8 public:
9 GlobalCoreInstance();
10 ~GlobalCoreInstance();
11
12 private:
13 struct aos_core global_core_data_;
14};
15
Brian Silvermanb3616972013-03-05 19:58:10 -080016// Enables the logging framework for use during a gtest test.
17// It will print out all WARNING and above messages all of the time. It will
18// also print out all log messages when a test fails.
19// This function only needs to be called once in each process (after gtest is
20// initialized), however it can be called more than that.
21void EnableTestLogging();
22
brians343bc112013-02-10 01:53:46 +000023} // namespace testing
24} // namespace common
25} // namespace aos