equal
deleted
inserted
replaced
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 |
|