Alexander Afanasyev | a4e7428 | 2013-07-11 15:23:20 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */ |
| 2 | /* |
| 3 | * Copyright (c) 2013, Regents of the University of California |
| 4 | * Alexander Afanasyev |
| 5 | * |
| 6 | * GNU v3.0 license, See the LICENSE file for more information |
| 7 | * |
| 8 | * Author: Alexander Afanasyev <alexander.afanasyev@ucla.edu> |
| 9 | */ |
| 10 | |
| 11 | #ifndef NDNSIM_TEST_API_H |
| 12 | #define NDNSIM_TEST_API_H |
| 13 | |
| 14 | #include "ns3/test.h" |
| 15 | #include "ns3/ptr.h" |
| 16 | |
| 17 | namespace ns3 { |
| 18 | |
| 19 | class Application; |
| 20 | |
| 21 | namespace ndn { |
| 22 | } |
| 23 | |
| 24 | class ApiTest : public TestCase |
| 25 | { |
| 26 | public: |
| 27 | ApiTest () |
| 28 | : TestCase ("API test") |
| 29 | { |
| 30 | } |
| 31 | |
| 32 | private: |
| 33 | virtual void DoRun (); |
| 34 | |
| 35 | void Check0 (Ptr<Application> app); |
| 36 | void Check1 (Ptr<Application> app); |
| 37 | void Check2 (Ptr<Application> app); |
| 38 | }; |
| 39 | |
| 40 | } |
| 41 | |
| 42 | #endif // NDNSIM_TEST_API_H |