Changeset 25754 for trunk/psModules/test/objects/tap_pmModel.c
- Timestamp:
- Oct 2, 2009, 3:11:32 PM (17 years ago)
- File:
-
- 1 edited
-
trunk/psModules/test/objects/tap_pmModel.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/test/objects/tap_pmModel.c
r21471 r25754 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.
