| OLD | NEW |
| 1 // Copyright (c) 2015 PDFium Authors. All rights reserved. | 1 // Copyright (c) 2015 PDFium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "embedder_test.h" | 5 #include "embedder_test.h" |
| 6 | 6 |
| 7 #include <limits.h> | 7 #include <limits.h> |
| 8 #include <stdio.h> | 8 #include <stdio.h> |
| 9 #include <stdlib.h> | 9 #include <stdlib.h> |
| 10 #include <string.h> | 10 #include <string.h> |
| 11 | 11 |
| 12 #include <list> | 12 #include <list> |
| 13 #include <string> | 13 #include <string> |
| 14 #include <utility> | 14 #include <utility> |
| 15 #include <vector> | 15 #include <vector> |
| 16 | 16 |
| 17 #include "../fpdfsdk/include/fpdftext.h" | 17 #include "../fpdfsdk/include/fpdftext.h" |
| 18 #include "../fpdfsdk/include/fpdfview.h" | 18 #include "../fpdfsdk/include/fpdfview.h" |
| 19 #include "../core/include/fxcrt/fx_system.h" | 19 #include "../core/include/fxcrt/fx_system.h" |
| 20 #include "testing/gmock/include/gmock/gmock.h" |
| 20 #include "v8/include/v8.h" | 21 #include "v8/include/v8.h" |
| 21 | 22 |
| 22 #ifdef _WIN32 | 23 #ifdef _WIN32 |
| 23 #define snprintf _snprintf | 24 #define snprintf _snprintf |
| 24 #define PATH_SEPARATOR '\\' | 25 #define PATH_SEPARATOR '\\' |
| 25 #else | 26 #else |
| 26 #define PATH_SEPARATOR '/' | 27 #define PATH_SEPARATOR '/' |
| 27 #endif | 28 #endif |
| 28 | 29 |
| 29 namespace { | 30 namespace { |
| (...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 333 int icon) { | 334 int icon) { |
| 334 EmbedderTest* test = static_cast<EmbedderTest*>(platform); | 335 EmbedderTest* test = static_cast<EmbedderTest*>(platform); |
| 335 return test->delegate_->Alert(message, title, type, icon); | 336 return test->delegate_->Alert(message, title, type, icon); |
| 336 } | 337 } |
| 337 | 338 |
| 338 // Can't use gtest-provided main since we need to stash the path to the | 339 // Can't use gtest-provided main since we need to stash the path to the |
| 339 // executable in order to find the external V8 binary data files. | 340 // executable in order to find the external V8 binary data files. |
| 340 int main(int argc, char** argv) { | 341 int main(int argc, char** argv) { |
| 341 g_exe_path_ = argv[0]; | 342 g_exe_path_ = argv[0]; |
| 342 testing::InitGoogleTest(&argc, argv); | 343 testing::InitGoogleTest(&argc, argv); |
| 344 testing::InitGoogleMock(&argc, argv); |
| 343 return RUN_ALL_TESTS(); | 345 return RUN_ALL_TESTS(); |
| 344 } | 346 } |
| OLD | NEW |