Question: please help me i need screenshots and report for this code just one class for this requirement A final report will be submitted which includes

please help me i need screenshots and report for this code
just one class for this requirement
A final report will be submitted which includes the following:
Static/dynamic analysis result (10 points)
List of testing techniques used and result
(10 points)
Documentations on how test cases were developed (5 points)
EclEmma Coverage Report (10 points)
List of Junit Test Cases (5 points)
**************
package softwaresecuritproject;public class DegreeProgram { private String name; private int salary; private double minPreGPA; private String interest; private String category; private double acceptGPA; //Setters public void setProName(String name){ this.name = name; } public void setSalary(int salary){ this.salary = salary; } public void setMinPreGPA(double minPreGPA){ this.minPreGPA = minPreGPA; } public void setInterest(String interest){ this.interest = interest; } public void setCategory(String category){ this.category = category; } public void setAcceptGPA(double acceptGPA){ this.acceptGPA = acceptGPA; }//getters public int getSalary(){ return salary; } public double getMinPreGPA(){ return minPreGPA; } public String getInterest(){ return interest; } public double getAcceptGPA(){ return acceptGPA; } public String getCategory(){ return category; } public String getProName(){ return name; }}

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!