Relabel all build verification tests (BVT) to be unit tests (UNIT)

This commit is contained in:
Mitch Watrous
2011-04-07 10:33:33 -07:00
parent b3933a2fe4
commit 55ed95938b
11 changed files with 11 additions and 11 deletions

View File

@@ -217,7 +217,7 @@ public:
};
CommandLineTestSuite::CommandLineTestSuite ()
: TestSuite ("command-line", BVT)
: TestSuite ("command-line", UNIT)
{
AddTestCase (new CommandLineBooleanTestCase);
AddTestCase (new CommandLineIntTestCase);

View File

@@ -605,7 +605,7 @@ public:
};
ConfigTestSuite::ConfigTestSuite ()
: TestSuite ("config", BVT)
: TestSuite ("config", UNIT)
{
AddTestCase (new RootNamespaceConfigTestCase);
AddTestCase (new UnderRootNamespaceConfigTestCase);

View File

@@ -83,7 +83,7 @@ public:
};
GlobalValueTestSuite::GlobalValueTestSuite ()
: TestSuite ("global-value", BVT)
: TestSuite ("global-value", UNIT)
{
AddTestCase (new GlobalValueTestCase);
}

View File

@@ -417,7 +417,7 @@ public:
};
ObjectTestSuite::ObjectTestSuite ()
: TestSuite ("object", BVT)
: TestSuite ("object", UNIT)
{
AddTestCase (new CreateObjectTestCase);
AddTestCase (new AggregateObjectTestCase);

View File

@@ -136,7 +136,7 @@ public:
};
BasicRandomNumberTestSuite::BasicRandomNumberTestSuite ()
: TestSuite ("basic-random-number", BVT)
: TestSuite ("basic-random-number", UNIT)
{
AddTestCase (new BasicRandomNumberTestCase);
AddTestCase (new RandomNumberSerializationTestCase);

View File

@@ -1094,7 +1094,7 @@ public:
};
CsmaSystemTestSuite::CsmaSystemTestSuite ()
: TestSuite ("csma-system", BVT)
: TestSuite ("csma-system", UNIT)
{
AddTestCase (new CsmaBridgeTestCase);
AddTestCase (new CsmaBroadcastTestCase);

View File

@@ -122,7 +122,7 @@ public:
};
ErrorModelTestSuite::ErrorModelTestSuite ()
: TestSuite ("error-model", BVT)
: TestSuite ("error-model", UNIT)
{
AddTestCase (new ErrorModelSimple);
}

View File

@@ -398,7 +398,7 @@ public:
};
GlobalRoutingTestSuite::GlobalRoutingTestSuite ()
: TestSuite ("global-routing", BVT)
: TestSuite ("global-routing", UNIT)
{
AddTestCase (new DynamicGlobalRoutingTestCase);
AddTestCase (new GlobalRoutingSlash32TestCase);

View File

@@ -361,7 +361,7 @@ public:
};
MobilityTestSuite::MobilityTestSuite ()
: TestSuite ("mobility", BVT)
: TestSuite ("mobility", UNIT)
{
AddTestCase (new WaypointLazyNotifyFalse);
AddTestCase (new WaypointLazyNotifyTrue);

View File

@@ -54,7 +54,7 @@ public:
};
SampleTestSuite::SampleTestSuite ()
: TestSuite ("sample", BVT)
: TestSuite ("sample", UNIT)
{
AddTestCase (new SampleTestCase1);
}

View File

@@ -164,7 +164,7 @@ public:
};
StaticRoutingTestSuite::StaticRoutingTestSuite ()
: TestSuite ("static-routing", BVT)
: TestSuite ("static-routing", UNIT)
{
AddTestCase (new StaticRoutingSlash32TestCase);
}