Rouslan Solomakhin | 0335834 | 2020-08-13 19:33:44 | [diff] [blame^] | 1 | // Copyright 2020 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 "components/payments/content/android_app_communication_test_support.h" |
| 6 | #include "testing/gtest/include/gtest/gtest.h" |
| 7 | |
| 8 | namespace payments { |
| 9 | namespace { |
| 10 | |
| 11 | TEST(AndroidAppCommunicationTest, SmokeTest) { |
| 12 | auto support = AndroidAppCommunicationTestSupport::Create(); |
| 13 | auto scoped_initialization = support->CreateScopedInitialization(); |
| 14 | support->ExpectNoListOfPaymentAppsQuery(); |
| 15 | support->ExpectNoIsReadyToPayQuery(); |
| 16 | support->ExpectNoPaymentAppInvoke(); |
| 17 | } |
| 18 | |
| 19 | } // namespace |
| 20 | } // namespace payments |