blob: c9ee0dbb229a0f4cc84511b019c759c7f15fa00a (
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
// Copyright (c) 2013 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 "gtest/gtest.h"
TEST(TestCase, SimpleTest) {
EXPECT_EQ(4, 2*2);
}
TEST(TestCase, AnotherTest) {
EXPECT_EQ(4, sizeof(void*));
}
#if defined(SEL_LDR)
int main(int argc, char* argv[]) {
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}
#else
#include "ppapi/cpp/instance.h"
#include "ppapi/cpp/var.h"
#include "ppapi_simple/ps_main.h"
#if defined(WIN32)
#include <Windows.h>
#undef PostMessage
#endif
class GTestEventListener : public ::testing::EmptyTestEventListener {
public:
// TestEventListener overrides.
virtual void OnTestStart(const ::testing::TestInfo& test_info) {
std::stringstream msg;
msg << "start:" << test_info.test_case_name() << "." << test_info.name();
pp::Instance(PSGetInstanceId()).PostMessage(msg.str());
}
virtual void OnTestPartResult(
const ::testing::TestPartResult& test_part_result) {
if (test_part_result.failed()) {
std::stringstream msg;
msg << "fail:" << test_part_result.file_name() << ","
<< test_part_result.line_number() << ","
<< test_part_result.summary();
pp::Instance(PSGetInstanceId()).PostMessage(msg.str());
}
}
virtual void OnTestEnd(const ::testing::TestInfo& test_info) {
std::stringstream msg;
msg << "end:" << test_info.test_case_name() << "." << test_info.name()
<< "," << (test_info.result()->Failed() ? "failed" : "ok");
pp::Instance(PSGetInstanceId()).PostMessage(msg.str());
}
};
int example_main(int argc, char* argv[]) {
::testing::InitGoogleTest(&argc, argv);
::testing::UnitTest::GetInstance()->listeners()
.Append(new GTestEventListener());
return RUN_ALL_TESTS();
}
// Register the function to call once the Instance Object is initialized.
// see: pappi_simple/ps_main.h
PPAPI_SIMPLE_REGISTER_MAIN(example_main);
#endif
|