#include "components/autofill/core/browser/payments/payments_requests/unmask_iban_request.h"
#include "base/functional/callback_helpers.h"
#include "base/json/json_reader.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace autofill::payments {
namespace {
constexpr int kBillableServiceNumber = …;
constexpr int64_t kBillingCustomerNumber = …;
constexpr int64_t kInstrumentId = …;
}
class UnmaskIbanRequestTest : public testing::Test { … };
TEST_F(UnmaskIbanRequestTest, GetRequestContent) { … }
TEST_F(UnmaskIbanRequestTest, ParseResponse_ResponseIsComplete) { … }
TEST_F(UnmaskIbanRequestTest, ParseResponse_MissingValue) { … }
}