Chromium Code Reviews| Index: chrome/browser/extensions/platform_app_browsertest.cc |
| diff --git a/chrome/browser/extensions/platform_app_browsertest.cc b/chrome/browser/extensions/platform_app_browsertest.cc |
| index 3aeac39a9f1de56ada32255e07dcb067dd0f81eb..3415e0751383c7e1adad4b862555f97a7d633faa 100644 |
| --- a/chrome/browser/extensions/platform_app_browsertest.cc |
| +++ b/chrome/browser/extensions/platform_app_browsertest.cc |
| @@ -196,3 +196,11 @@ IN_PROC_BROWSER_TEST_F(PlatformAppBrowserTest, DisallowStorage) { |
| IN_PROC_BROWSER_TEST_F(PlatformAppBrowserTest, MAYBE_WindowsApi) { |
| ASSERT_TRUE(RunPlatformAppTest("platform_apps/windows_api")) << message_; |
| } |
| + |
| +IN_PROC_BROWSER_TEST_F(PlatformAppBrowserTest, DocumentEditor) { |
|
James Hawkins
2012/03/26 19:55:57
nit: Document what the test is testing.
benwells
2012/03/27 04:24:12
Done.
|
| + CommandLine* command_line = CommandLine::ForCurrentProcess(); |
| + FilePath test_doc(test_data_dir_.AppendASCII( |
| + "platform_apps/document_editor/test.txt")); |
| + command_line->AppendArgPath(test_doc); |
| + ASSERT_TRUE(RunPlatformAppTest("platform_apps/document_editor")) << message_; |
| +} |