Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

i need the code fixed, the goal is to test the employee file 6. (15 points) Implement a P2Tester class (with main method) that will

i need the code fixed, the goal is to test the employee file image text in transcribed
image text in transcribed
image text in transcribed
6. (15 points) Implement a P2Tester class (with main method) that will test all the classes and all its methods. Below is a general pattern you can follow but make necessary adjustments according to the class: a. Create object from class b. Print the instance variables c. Modify the instance variables d. Print the instance variables again e. Repeat Steps b-d if there are multiple methods that modify the instance variables of the object Emelan Employee key = new Employee(); System.out.println("Employee One's name: "+ key.getName()); System.out.println(key.getSalary()); System.out.println(key.getName()+" 's salary: "); System.out.println("Employee One's yearly salary: $ "+ key.getSalary(); public Employee() { name = ""; salary = 0; } public String getName() { return name; } public void setName(String name) { this.name = name; } public double getSalary() return salary; } public void setSalary(double salary) { this.salary = salary: } public double yearSalary(int months) F { double yearsal; yearsal = salary * months; return yearSal; } Wkland2 (debug) running... FEB 0

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Systems Design Implementation And Management

Authors: Peter Rob, Carlos Coronel

6th International Edition

061921323X, 978-0619213237

More Books

Students also viewed these Databases questions

Question

Describe the moral theories of business ethics.

Answered: 1 week ago

Question

What is the growth rate of GDP per capita?

Answered: 1 week ago