blob: 7df011208b1036966a7797289b9a8ae9414f8088 [file] [log] [blame]
Alexander Afanasyeva4e74282013-07-11 15:23:20 -07001/* -*- 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
17namespace ns3 {
18
19class Application;
20
21namespace ndn {
22}
23
24class ApiTest : public TestCase
25{
26public:
27 ApiTest ()
28 : TestCase ("API test")
29 {
30 }
31
32private:
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