#include "remoting/signaling/xmpp_log_to_server.h"
#include <memory>
#include "base/run_loop.h"
#include "base/test/task_environment.h"
#include "remoting/signaling/mock_signal_strategy.h"
#include "remoting/signaling/server_log_entry_unittest.h"
#include "remoting/signaling/signaling_address.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
QName;
XmlElement;
_;
DeleteArg;
DoAll;
InSequence;
Return;
namespace remoting {
namespace {
const char kTestBotJid[] = …;
const char kClientJid[] = …;
MATCHER_P2(IsLogEntry, key, value, "") { … }
}
class XmppLogToServerTest : public testing::Test { … };
TEST_F(XmppLogToServerTest, LogWhenConnected) { … }
TEST_F(XmppLogToServerTest, DontLogWhenDisconnected) { … }
}