Skip to content

Commit 3e75431

Browse files
committed
STYLE: Add ITK prefix to testing macros
Add ITK prefix to testing macros.
1 parent 5a6ee6c commit 3e75431

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

test/itkBioCellTest.cxx

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -64,25 +64,26 @@ class BioCellHelper : public itk::bio::Cell<NSpaceDimension>
6464
CellType * egg = CellType::CreateEgg();
6565

6666
// Test Set/Get methods
67+
6768
// CellType::SetRadius( radius );
68-
// TEST_SET_GET_VALUE(radius, egg->GetRadius());
69+
// ITK_TEST_SET_GET_VALUE(radius, egg->GetRadius());
6970
egg->GetRadius();
7071

7172
CellType::SetDefaultRadius(defaultRadius);
72-
// TEST_SET_GET_VALUE(defaultRadius, egg->GetDefaultRadius());
73+
// ITK_TEST_SET_GET_VALUE(defaultRadius, egg->GetDefaultRadius());
7374

7475
CellType::SetGrowthRadiusIncrement(growthRadiusIncrement);
75-
// TEST_SET_GET_VALUE(growthRadiusIncrement, egg->GetGrowthRadiusIncrement());
76+
// ITK_TEST_SET_GET_VALUE(growthRadiusIncrement, egg->GetGrowthRadiusIncrement());
7677

7778
CellType::SetGrowthRadiusLimit(growthRadiusLimit);
7879
ITK_TEST_SET_GET_VALUE(growthRadiusLimit, egg->GetGrowthRadiusLimit());
7980

8081
CellType::SetNutrientSelfRepairLevel(nutrientSelfRepairLevel);
81-
/*TEST_SET_GET_VALUE(nutrientSelfRepairLevel,
82+
/*ITK_TEST_SET_GET_VALUE(nutrientSelfRepairLevel,
8283
egg->GetNutrientSelfRepairLevel());*/
8384

8485
CellType::SetEnergySelfRepairLevel(energySelfRepairLevel);
85-
// TEST_SET_GET_VALUE(energySelfRepairLevel, egg->GetEnergySelfRepairLevel());
86+
// ITK_TEST_SET_GET_VALUE(energySelfRepairLevel, egg->GetEnergySelfRepairLevel());
8687

8788
CellType::SetGrowthMaximumLatencyTime(growthMaximumLatencyTime);
8889
ITK_TEST_SET_GET_VALUE(growthMaximumLatencyTime, egg->GetGrowthMaximumLatencyTime());
@@ -91,19 +92,19 @@ class BioCellHelper : public itk::bio::Cell<NSpaceDimension>
9192
ITK_TEST_SET_GET_VALUE(divisionMaximumLatencyTime, egg->GetDivisionMaximumLatencyTime());
9293

9394
CellType::SetMaximumGenerationLimit(maximumGenerationLimit);
94-
/*TEST_SET_GET_VALUE(maximumGenerationLimit,
95-
egg->GetMaximumGenerationLimit());*/
95+
/*ITK_TEST_SET_GET_VALUE(maximumGenerationLimit,
96+
egg->GetMaximumGenerationLimit());
9697
9798
CellType::SetChemoAttractantLowThreshold(chemoAttractantLowThreshold);
98-
/*TEST_SET_GET_VALUE(chemoAttractantLowThreshold,
99+
/*ITK_TEST_SET_GET_VALUE(chemoAttractantLowThreshold,
99100
egg->GetChemoAttractantLowThreshold());*/
100101

101102
CellType::SetChemoAttractantHighThreshold(chemoAttractantHighThreshold);
102-
/*TEST_SET_GET_VALUE(chemoAttractantHighThreshold,
103+
/*ITK_TEST_SET_GET_VALUE(chemoAttractantHighThreshold,
103104
egg->GetChemoAttractantHighThreshold());*/
104105

105106
// CellType::SetChemoAttractantLevel( chemoAttractantLevel );
106-
// TEST_SET_GET_VALUE(chemoAttractantLevel, egg->GetChemoAttractantLevel());
107+
// ITK_TEST_SET_GET_VALUE(chemoAttractantLevel, egg->GetChemoAttractantLevel());
107108

108109
egg->ClearForce();
109110
egg->AddForce(forceVector);

0 commit comments

Comments
 (0)