Coverage Summary for Class: HelloWorld_CS401_Gradle (<empty package name>)

Class Class, % Method, % Line, %
HelloWorld_CS401_Gradle 0% (0/ 1) 0% (0/ 2) 0% (0/ 2)


1 /** 2  * @author Lynne Grewe 3  * @version 1.0 4  * @since 2020 5  * Description: This is the proverbial "Hello World" application and is being developed 6  * to showcase some of the tools used in CS401 Software Engineering. 7  */ 8 public class HelloWorld_CS401_Gradle { 9  10  11  /** 12  * main method that simply outputs to standard output "Hello World" message 13  * @param args No arguments are used or expected 14  */ 15  public static void main(String args[]){ 16  17  System.out.println("Hello CS401 from an IntelliJ Gradle Java project!s"); 18  } 19 }