src/internet/test/ipv6-address-generator-test-suite.cc
changeset 9079 1e5921e6507d
parent 7599 33588b2b9557
child 9266 d26408b17360
equal deleted inserted replaced
9078:11ac313c0610 9079:1e5921e6507d
    19 
    19 
    20 #include "ns3/test.h"
    20 #include "ns3/test.h"
    21 #include "ns3/ipv6-address-generator.h"
    21 #include "ns3/ipv6-address-generator.h"
    22 #include "ns3/simulation-singleton.h"
    22 #include "ns3/simulation-singleton.h"
    23 
    23 
    24 namespace ns3 {
    24 using namespace ns3;
    25 
    25 
    26 class NetworkNumber6AllocatorTestCase : public TestCase
    26 class NetworkNumber6AllocatorTestCase : public TestCase
    27 {
    27 {
    28 public:
    28 public:
    29   NetworkNumber6AllocatorTestCase ();
    29   NetworkNumber6AllocatorTestCase ();
   284     AddTestCase (new NetworkAndAddress6TestCase ());
   284     AddTestCase (new NetworkAndAddress6TestCase ());
   285     AddTestCase (new ExampleAddress6GeneratorTestCase ());
   285     AddTestCase (new ExampleAddress6GeneratorTestCase ());
   286     AddTestCase (new AddressCollision6TestCase ());
   286     AddTestCase (new AddressCollision6TestCase ());
   287   }
   287   }
   288 } g_ipv6AddressGeneratorTestSuite;
   288 } g_ipv6AddressGeneratorTestSuite;
   289 
       
   290 } // namespace ns3
       
   291