blob: e49681e5da62769d6fa2ada95a7f6e82a6c948d3 [file] [log] [blame]
Rouslan Solomakhin03358342020-08-13 19:33:441// 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
8namespace payments {
9namespace {
10
11TEST(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