- Timestamp:
- May 3, 2010, 8:50:52 AM (16 years ago)
- Location:
- branches/simtest_nebulous_branches
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/simtest_nebulous_branches
- Property svn:mergeinfo changed
-
branches/simtest_nebulous_branches/psModules
-
Property svn:mergeinfo
set to (toggle deleted branches)
/trunk/psModules merged eligible /branches/eam_branches/stackphot.20100406/psModules 27623-27653 /branches/pap_delete/psModules 27530-27595
-
Property svn:mergeinfo
set to (toggle deleted branches)
-
branches/simtest_nebulous_branches/psModules/test/objects/tap_pmModel.c
r21471 r27840 77 77 ok(model->nDOF == 0, "pmModelAlloc() set pmModel->nDOF correctly"); 78 78 ok(model->nIter == 0, "pmModelAlloc() set pmModel->nIter correctly"); 79 ok(model-> radiusFit == 0, "pmModelAlloc() set pmModel->radiusFitcorrectly");79 ok(model->fitRadius == 0, "pmModelAlloc() set pmModel->fitRadius correctly"); 80 80 ok(model->flags == PM_MODEL_STATUS_NONE, "pmModelAlloc() set pmModel->flags correctly"); 81 81 ok(model->residuals == NULL, "pmModelAlloc() set pmModel->residuals correctly"); … … 132 132 modelSrc->nIter = 3; 133 133 modelSrc->flags = PM_MODEL_STATUS_NONE; 134 modelSrc-> radiusFit= 4;134 modelSrc->fitRadius = 4; 135 135 pmModel *modelDst = pmModelCopy(modelSrc); 136 136 ok(modelDst != NULL && psMemCheckModel(modelDst), "pmModelCopy() returned a non-NULL pmModel"); … … 139 139 ok(modelDst->nIter == 3, "pmModelCopy() set the pmModel->nIter member correctly"); 140 140 ok(modelDst->flags == PM_MODEL_STATUS_NONE, "pmModelCopy() set the pmModel->flags member correctly"); 141 ok(modelDst-> radiusFit == 4, "pmModelCopy() set the pmModel->radiusFitmember correctly");141 ok(modelDst->fitRadius == 4, "pmModelCopy() set the pmModel->fitRadius member correctly"); 142 142 143 143 psFree(modelSrc);
Note:
See TracChangeset
for help on using the changeset viewer.
