I use Fit / Fitnesse. I have a column that looks like this.
! | Get Stepstools Medication Id From Vocab and String |
| Concept As String | Vocabulary Name Abbr | Vocabulary Concept Id | Stepstools Med Id? |
| AMOXICILLIN | RXNORM | 723 | 1 |
| AMOXICILLIN | | | 1 |
| AUGMENTIN | RXNORM | 151392 | 8 |
| AUGMENTIN | | | 8 |
| Amoxicillin 1000 MG / Clavulanate 62.5 MG Extended Release Tablet | | | 8 |
I am trying to pass empty string values โโusing | | | | but when starting the test it takes the value from the previous line and uses this instead.
My device code is as follows:
public class GetStepstoolsMedicationIdFromVocabAndString: ColumnFixture { public string VocabularyNameAbbr; public string VocabularyConceptId; public string ConceptAsString; public string StepStoolsMedId() { MedicationMapping mapping = MedicationMapper.GetStepMedIdFromVocabNameIdAndStringMed( VocabularyNameAbbr, VocabularyConceptId, ConceptAsString ); if (mapping.SuccessfullyMapped) { return mapping.StepstoolsMedicationId.ToString(); } else { return mapping.ErrorMessage; } } }
How do I get a test for using empty string values?
Marvin
source share