Updated comments

This commit is contained in:
2021-10-11 11:35:20 -04:00
parent 0ea27f041a
commit e03d7e8d0e
2 changed files with 15 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
//myClasses/test/mee/testStringAlgorithms.cpp
//Matthew Ellison
// Created: 07-02-21
//Modified: 07-02-21
//Modified: 10-11-21
//This file contains tests for the functions in my stringAlgorithms library
/*
Copyright (C) 2021 Matthew Ellison
@@ -188,6 +188,14 @@ bool testIsPandigital(){
return false;
}
//Test 4
num = "123";
correctAnswer = false;
answer = mee::isPandigital(num, '3', '1');
if(correctAnswer != answer){
return false;
}
//If it hasn't failed a test then return true for passing all the tests
return true;
}