blob: a9603806b2adec17721d141c3bcb3a81479c0b4d [file] [log] [blame]
Junxiao Shicbba04c2014-01-26 14:21:22 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (C) 2014 Named Data Networking Project
4 * See COPYING for copyright and distribution information.
5 */
6
7#ifndef NFD_TEST_FACE_DUMMY_FACE_HPP
8#define NFD_TEST_FACE_DUMMY_FACE_HPP
9
10#include "face/face.hpp"
11
12namespace ndn {
13
14/** \class DummyFace
15 * \brief provides a Face that cannot communicate
16 * for unit testing only
17 */
18class DummyFace : public Face
19{
20public:
21 DummyFace(FaceId id)
22 : Face(id)
23 {
24 }
25
26 virtual void
27 sendInterest(const Interest &interest)
28 {
29 }
30
31 virtual void
32 sendData(const Data &data)
33 {
34 }
35};
36
37} // namespace ndn
38
39#endif // TEST_FACE_DUMMY_FACE_HPP