blob: 11ef45eb7d6232ccf0aafe69366cf167fb0ae76a (
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
|
// 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.
#include "base/message_loop.h"
#include "chrome/browser/metrics/display_utils.h"
#include "content/browser/browser_thread.h"
#include "testing/gtest/include/gtest/gtest.h"
TEST(DisplayUtilsTest, GetPrimaryDisplayDimensions) {
MessageLoop message_loop;
BrowserThread ui_thread(BrowserThread::UI, &message_loop);
int width = 0, height = 0;
// We aren't actually testing that it's correct, just that it's sane.
DisplayUtils::GetPrimaryDisplayDimensions(&width, &height);
EXPECT_GE(width, 10);
EXPECT_GE(height, 10);
}
TEST(DisplayUtilsTest, GetDisplayCount) {
MessageLoop message_loop;
BrowserThread ui_thread(BrowserThread::UI, &message_loop);
// We aren't actually testing that it's correct, just that it's sane.
EXPECT_GE(DisplayUtils::GetDisplayCount(), 1);
}
|