Error. Parse Exception: No
class provided for `main'
Answer: An @run main
tag was provided
without the required class name. Either provide the name of the class
or remove the line entirely if appropriate.
The line may be removed without impacting the test if all of the following criteria are met:
.java
extension.@run
tag in the test description.main
are requiredIn removing the line, we take advantage of the default action for
.java
files.