blob: a58a3ee239c140d76f91d3f2db221fa2ea398066 [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
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080012namespace nfd {
Junxiao Shicbba04c2014-01-26 14:21:22 -070013
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
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080037} // namespace nfd
Junxiao Shicbba04c2014-01-26 14:21:22 -070038
39#endif // TEST_FACE_DUMMY_FACE_HPP