chromium/remoting/signaling/iq_sender_unittest.cc

// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "remoting/signaling/iq_sender.h"

#include <memory>
#include <utility>

#include "base/functional/bind.h"
#include "base/memory/ref_counted.h"
#include "base/run_loop.h"
#include "base/strings/stringprintf.h"
#include "base/test/mock_callback.h"
#include "base/test/task_environment.h"
#include "remoting/signaling/mock_signal_strategy.h"
#include "remoting/signaling/xmpp_constants.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/libjingle_xmpp/xmllite/xmlelement.h"

_;
DeleteArg;
DoAll;
InvokeWithoutArgs;
NotNull;
Return;
SaveArg;

QName;
XmlElement;

namespace remoting {

namespace {

const char kStanzaId[] =;
const char kNamespace[] =;
const char kNamespacePrefix[] =;
const char kBodyTag[] =;
const char kType[] =;
const char kTo[] =;

MATCHER_P(XmlEq, expected, "") {}

}  // namespace

class IqSenderTest : public testing::Test {};

TEST_F(IqSenderTest, SendIq) {}

TEST_F(IqSenderTest, Timeout) {}

TEST_F(IqSenderTest, NotNormalizedJid) {}

TEST_F(IqSenderTest, InvalidFrom) {}

}  // namespace remoting