Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 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 #include "base/macros.h" | |
| 6 #include "chrome/browser/ui/views/payments/payment_request_browsertest_base.h" | |
| 7 #include "content/public/test/browser_test.h" | |
| 8 #include "content/public/test/browser_test_utils.h" | |
| 9 #include "testing/gtest/include/gtest/gtest.h" | |
| 10 | |
| 11 namespace payments { | |
| 12 | |
| 13 class PaymentRequestPaymentAppTest : public PaymentRequestBrowserTestBase { | |
| 14 protected: | |
| 15 PaymentRequestPaymentAppTest() | |
| 16 : PaymentRequestBrowserTestBase("/payment_request_bobpay_test.html") {} | |
| 17 | |
| 18 private: | |
| 19 DISALLOW_COPY_AND_ASSIGN(PaymentRequestPaymentAppTest); | |
| 20 }; | |
| 21 | |
| 22 IN_PROC_BROWSER_TEST_F(PaymentRequestPaymentAppTest, ShowNotSupportedError) { | |
| 23 ResetEventObserver(DialogEvent::NOT_SUPPORTED_ERROR); | |
| 24 ASSERT_TRUE(content::ExecuteScript(GetActiveWebContents(), "buy();")); | |
| 25 WaitForObservedEvent(); | |
| 26 ExpectBodyContains({"NotSupportedError"}); | |
|
Mathieu
2017/04/17 03:20:45
hopefully sometime soon this will return something
please use gerrit instead
2017/04/17 18:19:54
Acknowledged.
| |
| 27 } | |
| 28 | |
| 29 } // namespace payments | |
| OLD | NEW |