OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 // Contains holistic tests of the bindings infrastructure |
| 6 |
| 7 #include "chrome/browser/extensions/extension_apitest.h" |
| 8 |
| 9 IN_PROC_BROWSER_TEST_F(ExtensionApiTest, ExceptionInHandlerShouldNotCrash) { |
| 10 ASSERT_TRUE(RunExtensionSubtest( |
| 11 "bindings/exception_in_handler_should_not_crash", |
| 12 "page.html")) << message_; |
| 13 } |
OLD | NEW |