Relabel test classes. docs
authorPeter D. Barnes, Jr. <barnes26@llnl.gov>
Thu, 15 Nov 2012 09:35:39 -0800
branchdocs
changeset 9858 00aeba03d9e1
parent 9141 fa3959f25b01
child 9860 d8d9287f388c
Relabel test classes.
src/core/test/object-test-suite.cc
--- a/src/core/test/object-test-suite.cc	Tue Nov 13 10:27:52 2012 -0800
+++ b/src/core/test/object-test-suite.cc	Thu Nov 15 09:35:39 2012 -0800
@@ -29,7 +29,7 @@
 {
 public:
   static ns3::TypeId GetTypeId (void) {
-    static ns3::TypeId tid = ns3::TypeId ("BaseA")
+    static ns3::TypeId tid = ns3::TypeId ("ObjectTest:BaseA")
       .SetParent (Object::GetTypeId ())
       .HideFromDocumentation ()
       .AddConstructor<BaseA> ();
@@ -44,7 +44,7 @@
 {
 public:
   static ns3::TypeId GetTypeId (void) {
-    static ns3::TypeId tid = ns3::TypeId ("DerivedA")
+    static ns3::TypeId tid = ns3::TypeId ("ObjectTest:DerivedA")
       .SetParent (BaseA::GetTypeId ())
       .HideFromDocumentation ()
       .AddConstructor<DerivedA> ();
@@ -61,7 +61,7 @@
 {
 public:
   static ns3::TypeId GetTypeId (void) {
-    static ns3::TypeId tid = ns3::TypeId ("BaseB")
+    static ns3::TypeId tid = ns3::TypeId ("ObjectTest:BaseB")
       .SetParent (Object::GetTypeId ())
       .HideFromDocumentation ()
       .AddConstructor<BaseB> ();
@@ -76,7 +76,7 @@
 {
 public:
   static ns3::TypeId GetTypeId (void) {
-    static ns3::TypeId tid = ns3::TypeId ("DerivedB")
+    static ns3::TypeId tid = ns3::TypeId ("ObjectTest:DerivedB")
       .SetParent (BaseB::GetTypeId ())
       .HideFromDocumentation ()
       .AddConstructor<DerivedB> ();