blob: e78f4ccad9e68e0c5a011b3fe461fd0e679d248a [file] [log] [blame]
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/**
* Copyright (C) 2014 Named Data Networking Project
* See COPYING for copyright and distribution information.
*/
#ifndef NFD_TEST_FACE_DUMMY_FACE_HPP
#define NFD_TEST_FACE_DUMMY_FACE_HPP
#include "face/face.hpp"
namespace nfd {
/** \class DummyFace
* \brief provides a Face that cannot communicate
* for unit testing only
*/
class DummyFace : public Face
{
public:
DummyFace()
{
}
virtual void
sendInterest(const Interest& interest)
{
}
virtual void
sendData(const Data& data)
{
}
virtual void
close()
{
}
};
} // namespace nfd
#endif // TEST_FACE_DUMMY_FACE_HPP