def test_ProfilesFile(self):
     if checkIfEmpty(profilesFile):
         assert True
     else:
         assert checkParamLength("Profiles.txt", 7)
 def test_LoginsFile(self):
     if checkIfEmpty(loginsFile):
         assert True
     else:
         assert checkParamLength(loginsFile, 9)
 def test_ExperiencesFile(self):
     if checkIfEmpty(experiencesFile):
         assert True
     else:
         assert checkParamLength(experiencesFile, 7)
 def test_JobsFile(self):
     if checkIfEmpty(jobsFile):
         assert True
     else:
         assert checkParamLength(jobsFile, 5)
 def test_EducationFile(self):
     if checkIfEmpty(educationFile):
         assert True
     else:
         assert checkParamLength(educationFile, 4)