blob: 0c4ad7e798f608ab7ad08129cb97188453661b76 [file] [log] [blame]
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -07001/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
2/*
3 * Copyright (c) 2011,2012 University of California, Los Angeles
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation;
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 *
18 * Author: Ilya Moiseenko <iliamo@cs.ucla.edu>
19 * Alexander Afanasyev <alexander.afanasyev@ucla.edu>
20 */
21
22#include "ns3/test.h"
23
24#include "ndnSIM-serialization.h"
25#include "ndnSIM-pit.h"
Alexander Afanasyev0845c092012-07-13 17:45:33 -070026#include "ndnSIM-stats-tree.h"
Alexander Afanasyevea9b3e62012-08-13 19:02:54 -070027#include "fw-per-fib-limits.h"
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -070028
29namespace ns3
30{
31
32class NdnSimTestSuite : public TestSuite
33{
34public:
35 NdnSimTestSuite ()
36 : TestSuite ("ndnSIM-suite", UNIT)
37 {
38 SetDataDir (NS_TEST_SOURCEDIR);
39
Alexander Afanasyev31cb4692012-08-17 13:08:20 -070040 AddTestCase (new InterestSerializationTest ());
41 AddTestCase (new ContentObjectSerializationTest ());
42 AddTestCase (new PitTest ());
43 AddTestCase (new StatsTreeTest ());
Alexander Afanasyevea9b3e62012-08-13 19:02:54 -070044 AddTestCase (new ndn::FwPerFibLimits ());
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -070045 }
46};
47
48static NdnSimTestSuite suite;
49
50}