Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions test/itkBioCellTest.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -65,24 +65,24 @@ class BioCellHelper : public itk::bio::Cell<NSpaceDimension>

// 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());
Expand All @@ -91,19 +91,19 @@ class BioCellHelper : public itk::bio::Cell<NSpaceDimension>
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);
Expand Down