Question: CHALLENGE ACTIVITY 6 . 7 . 1 : Unit testing. Add two more statements to main ( ) to test inputs 3 and - 1

CHALLENGE
ACTIVITY
6.7.1: Unit testing.
Add two more statements to main() to test inputs 3 and -1. Use print statements similar to the existing one (don't use assert).
Learn how our autograder, works
528040.3489528.93zqy7
import java.util.Scanner;
public class UnitTesting {
// Method returns origNum cubed
public static int cubeNum(int origNum){
}
return origNum * origNum * origNum;
public static void main (String [] args){
System.out.println("Testing started");
System.out.println("2, expecting 8, got: "+ cubeNum(2));
V* Your solution goes here */
System.out.println("Testing completed");
}
 CHALLENGE ACTIVITY 6.7.1: Unit testing. Add two more statements to main()

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!