blob: 7c45c2ed0b6c6455a63adff062072710bcf8cbb1 (
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
29
30
31
32
33
34
35
36
37
|
// Copyright (c) 2011 The Chromium 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 VIEWS_TEST_VIEWS_TEST_BASE_H_
#define VIEWS_TEST_VIEWS_TEST_BASE_H_
#pragma once
#include "testing/gtest/include/gtest/gtest.h"
#include "base/message_loop.h"
namespace views {
// A base class for views unit test. It creates a message loop necessary
// to drive UI events and takes care of OLE initialization for windows.
class ViewsTestBase : public testing::Test {
public:
ViewsTestBase();
virtual ~ViewsTestBase();
// testing::Test:
virtual void TearDown();
void RunPendingMessages() {
message_loop_.RunAllPending();
}
private:
MessageLoopForUI message_loop_;
DISALLOW_COPY_AND_ASSIGN(ViewsTestBase);
};
} // namespace views
#endif // VIEWS_TEST_VIEWS_TEST_BASE_H_
|