blob: 6fba4875b29d27e58b4ccaa7f8adb84cede58921 [file] [log] [blame]
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/android/jni_android.h"
#include "chrome/android/native_j_unittests_jni_headers/PaymentManifestVerifierTest_jni.h"
#include "testing/gtest/include/gtest/gtest.h"
using base::android::AttachCurrentThread;
class PaymentManifestVerifierTest : public ::testing::Test {
public:
PaymentManifestVerifierTest()
: j_test_(Java_PaymentManifestVerifierTest_Constructor(
AttachCurrentThread())) {}
const base::android::ScopedJavaGlobalRef<jobject>& j_test() {
return j_test_;
}
private:
base::android::ScopedJavaGlobalRef<jobject> j_test_;
};
JAVA_TESTS(PaymentManifestVerifierTest, j_test())