#include "third_party/blink/renderer/modules/nfc/nfc_proxy.h"
#include <map>
#include <memory>
#include <utility>
#include "base/run_loop.h"
#include "base/test/bind.h"
#include "mojo/public/cpp/bindings/pending_receiver.h"
#include "mojo/public/cpp/bindings/receiver.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "third_party/blink/public/platform/browser_interface_broker_proxy.h"
#include "third_party/blink/renderer/bindings/core/v8/v8_binding_for_testing.h"
#include "third_party/blink/renderer/bindings/modules/v8/v8_ndef_scan_options.h"
#include "third_party/blink/renderer/core/frame/local_dom_window.h"
#include "third_party/blink/renderer/core/frame/local_frame.h"
#include "third_party/blink/renderer/core/testing/page_test_base.h"
#include "third_party/blink/renderer/modules/nfc/ndef_reader.h"
#include "third_party/blink/renderer/platform/testing/unit_test_helpers.h"
namespace blink {
namespace {
_;
Invoke;
static const char kFakeRecordId[] = …;
static const char kFakeNfcTagSerialNumber[] = …;
MATCHER_P(MessageEquals, expected, "") { … }
class MockNDEFReader : public NDEFReader { … };
class FakeNfcService : public device::mojom::blink::NFC { … };
class NFCProxyTest : public PageTestBase { … };
TEST_F(NFCProxyTest, SuccessfulPath) { … }
TEST_F(NFCProxyTest, ErrorPath) { … }
}
}