创建主要方法的测试方法

时间:2018-04-26 04:12:11

标签: java testing methods

我正在尝试创建一个满足以下要求的测试方法:

*创建一个名为Demo.java的类。该类将包含您的主要方法

使用默认构造函数创建类的实例。

调用所有对象集方法,为对象赋值

调用对象显示方法,打印出它的值

使用参数化构造函数

创建类的另一个实例

调用对象显示方法,打印出它的值。*

**以下是我的代码,但在第一行出现错误。编译器告诉我,我必须将名为“Demo”的类重命名为其他东西,但我需要将其命名为Demo,所以我不知道如何从这里开始。

public class Demo {

public static void main(String[] args) {

Netflix p1 = new Netflix();

p1.setPrice(11.99);

p1.setTitle("Expert");

p1.setTypeNumber(2000);

p1.display();

Netflix p2 = new Netflix(100, 7.99, "Novice");

p2.display();

}

}



public class Netflix {

private int typeNumber;

private double price;

private String title;

public Netflix() {

}

public Netflix(int typeNumber, double price, String title) {

super();

this.typeNumber = typeNumber;

this.price = price;

this.title = title;

}

public void display() {

System.out.println( "Netflix [price=" + price + ", title=" + title + ", typeNumber="

+ typeNumber + "]");

}

public String getTitle() {

return title;

}

public void setTitle(String title) {

this.title = title;

}

public int getTypeNumber() {

return typeNumber;

}

public void setTypeNumber(int typeNumber) {

this.typeNumber = typeNumber;

}

public double getPrice() {

return price;

}

public void setPrice(double price) {

this.price = price;

}

}

1 个答案:

答案 0 :(得分:0)

<强> Demo.java

public class Demo {

    public static void main(String[] args) {

        Netflix p1 = new Netflix();
    }
}

class Netflix {
}