checkFullName("DougAdams", "Mr. Douglas Adams", "");
checkFullName(" JakeBrown ", "Mr.JacobBrownIII", "");
checkFullName("NoSuchGuy", "", "Nomatchfound.");
checkFullName("John", "", "More than one result.");
列を整列させる
//particalName ,expectedFullName , expected error
checkFullName(“Doug Adams” , "Mr. Douglas Adams", “”);
checkFullName(“Jake Brown” , "Mr.JacobBrownIII" , “”);
checkFullName(“No Such Guy” , “” , “Nomatchfound.”);
checkFullName(“John” , “” , “More than one result.”);
引数がわかりやすい