You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Separation of concerns: Logic to verify path are valid and logic for split string in .txt file should exist as stand alone not tightly coupled.
parseTextFile should be split into 2 separate units, retrieveDataFromFile & splitDataIntoTestUnits, code coverage will focus on testing splitDataIntoTestUnits.
The text was updated successfully, but these errors were encountered:
Next PR will follow advised naming convention above.
With addition of validation functions.
New method names: validateFile validateFolder retrieveFileContent ===> retrieveDataFromFile parseTextFileContent===>splitDataIntoTestUnits createTestData ... should this be called createTestUnits ??
Separation of concerns: Logic to verify path are valid and logic for split string in
.txt
file should exist as stand alone not tightly coupled.parseTextFile
should be split into 2 separate units,retrieveDataFromFile
&splitDataIntoTestUnits
, code coverage will focus on testingsplitDataIntoTestUnits
.The text was updated successfully, but these errors were encountered: