Write a function that, given a non-null String, returns true if it contains only alphabetic
characters, and false otherwise.
For example, given "abc", you would return true. Given "ab12", you would return false.
For simplicity, spaces are considered non-alphabetic, so "ab c" would return false.
You may find the documentation on
String.matches()
useful. You may have to look into how to use regular expressions.
You're challenge is to write tests for this problem described above.
Stuck? You may find these lessons helpful: