blob: 4eb111ac4ae767453700821fbff45e4f8feba7b0 (
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
38
39
40
41
42
|
// 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"
#include "views/test/test_views_delegate.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();
}
protected:
TestViewsDelegate& views_delegate() { return views_delegate_; }
private:
MessageLoopForUI message_loop_;
TestViewsDelegate views_delegate_;
DISALLOW_COPY_AND_ASSIGN(ViewsTestBase);
};
} // namespace views
#endif // VIEWS_TEST_VIEWS_TEST_BASE_H_
|