From 6fc41755ad8905b03c652ae4163f818e0560b916 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=20Haitz=20Legarreta=20Gorro=C3=B1o?= Date: Fri, 14 Jun 2019 18:06:07 -0400 Subject: [PATCH] STYLE: Add ITK prefix to testing macros Add ITK prefix to testing macros. --- test/itkBioCellTest.cxx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/test/itkBioCellTest.cxx b/test/itkBioCellTest.cxx index 7253dcf..6f717bb 100644 --- a/test/itkBioCellTest.cxx +++ b/test/itkBioCellTest.cxx @@ -65,24 +65,24 @@ class BioCellHelper : public itk::bio::Cell // Test Set/Get methods // CellType::SetRadius( radius ); - // TEST_SET_GET_VALUE(radius, egg->GetRadius()); + // ITK_TEST_SET_GET_VALUE(radius, egg->GetRadius()); egg->GetRadius(); CellType::SetDefaultRadius(defaultRadius); - // TEST_SET_GET_VALUE(defaultRadius, egg->GetDefaultRadius()); + // ITK_TEST_SET_GET_VALUE(defaultRadius, egg->GetDefaultRadius()); CellType::SetGrowthRadiusIncrement(growthRadiusIncrement); - // TEST_SET_GET_VALUE(growthRadiusIncrement, egg->GetGrowthRadiusIncrement()); + // ITK_TEST_SET_GET_VALUE(growthRadiusIncrement, egg->GetGrowthRadiusIncrement()); CellType::SetGrowthRadiusLimit(growthRadiusLimit); ITK_TEST_SET_GET_VALUE(growthRadiusLimit, egg->GetGrowthRadiusLimit()); CellType::SetNutrientSelfRepairLevel(nutrientSelfRepairLevel); - /*TEST_SET_GET_VALUE(nutrientSelfRepairLevel, + /*ITK_TEST_SET_GET_VALUE(nutrientSelfRepairLevel, egg->GetNutrientSelfRepairLevel());*/ CellType::SetEnergySelfRepairLevel(energySelfRepairLevel); - // TEST_SET_GET_VALUE(energySelfRepairLevel, egg->GetEnergySelfRepairLevel()); + // ITK_TEST_SET_GET_VALUE(energySelfRepairLevel, egg->GetEnergySelfRepairLevel()); CellType::SetGrowthMaximumLatencyTime(growthMaximumLatencyTime); ITK_TEST_SET_GET_VALUE(growthMaximumLatencyTime, egg->GetGrowthMaximumLatencyTime()); @@ -91,19 +91,19 @@ class BioCellHelper : public itk::bio::Cell ITK_TEST_SET_GET_VALUE(divisionMaximumLatencyTime, egg->GetDivisionMaximumLatencyTime()); CellType::SetMaximumGenerationLimit(maximumGenerationLimit); - /*TEST_SET_GET_VALUE(maximumGenerationLimit, + /*ITK_TEST_SET_GET_VALUE(maximumGenerationLimit, egg->GetMaximumGenerationLimit());*/ CellType::SetChemoAttractantLowThreshold(chemoAttractantLowThreshold); - /*TEST_SET_GET_VALUE(chemoAttractantLowThreshold, + /*ITK_TEST_SET_GET_VALUE(chemoAttractantLowThreshold, egg->GetChemoAttractantLowThreshold());*/ CellType::SetChemoAttractantHighThreshold(chemoAttractantHighThreshold); - /*TEST_SET_GET_VALUE(chemoAttractantHighThreshold, + /*ITK_TEST_SET_GET_VALUE(chemoAttractantHighThreshold, egg->GetChemoAttractantHighThreshold());*/ // CellType::SetChemoAttractantLevel( chemoAttractantLevel ); - // TEST_SET_GET_VALUE(chemoAttractantLevel, egg->GetChemoAttractantLevel()); + // ITK_TEST_SET_GET_VALUE(chemoAttractantLevel, egg->GetChemoAttractantLevel()); egg->ClearForce(); egg->AddForce(forceVector);