Relabel test classes.
--- 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> ();