java - bookTest.java 打印出作者 arrayList,但不打印 isbn

标签 java arraylist isbn

要求:使用 Java Collection Framework 中的组件之一来容纳多个作者。需要一本带有 isbn 和作者集的书。 JUnit:testValidate 指南:测试至少两种情况(一种情况是书籍属性包含正确的数据类型且不为空也不包含空值,另一种情况不包含)。 testEquals 指南:测试至少两种情况(一种情况是作者和 isbn 匹配,一种情况不匹配)。测试至少两名作者。我的老师告诉我:testEquals你需要添加isbn和两个作者。创建一个ArrayList。添加两位作者。创建一个 Book 对象并添加 ArrayList 实例和 isbn。我想这就是我所做的,作者正在打印,但 ISBN 没有打印。我是一个新手,我很茫然!有人可以帮忙吗?

编辑/添加 我要打印 ISBN,但它只打印我拥有的第二个 ISBN。我需要更改什么才能打印它们?或者这有关系吗?

这是输出:

Testsuite: library.domain.BookTest
equals
Author List: [Bob Smith, Jane Doe]
ISBN: 67890
validate
Author List: [Bob Smith, Jane Doe]
ISBN: 67890
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.23 sec

------------- Standard Output ---------------
equals
Author List: [Bob Smith, Jane Doe]
ISBN: 67890
validate
Author List: [Bob Smith, Jane Doe]
ISBN: 67890
------------- ---------------- ---------------
test:
Deleting: /var/folders/k7/wpgy3lw91171qxlzt4pj0cfh0000gn/T/TEST-library.domain.BookTest.xml
BUILD SUCCESSFUL (total time: 1 second)

这是我的新页面:

NEW BookTest.java

package library.domain;

import java.util.ArrayList;
import static org.junit.Assert.assertEquals;
import org.junit.Test;

public class BookTest {

    private ArrayList<String> authorList = new ArrayList<>();

    @Test
    public void testEquals()                //test Equals() for accuracy
    {
        System.out.println("equals");
        authorList.add("Bob Smith");
        Book book = new Book("12345", authorList);
        assertEquals("expected true", true, book.equals(book));
        authorList.add("Jane Doe");
        book = new Book("67890", authorList);
        assertEquals("expected true", true, book.equals(book));
        System.out.println("Author List: " + authorList);
        System.out.println("ISBN: " + book.getIsbn());
    }

    @Test
    public void testValidate()          //test Validate() for accuracy
    {
        System.out.println("validate");
        authorList.add("Bob Smith");
        Book book = new Book("12345", authorList);
        assertEquals("expected true", true, book.validate());
        authorList.add("Jane Doe");
        book = new Book("67890", authorList);
        assertEquals("expected true", true, book.validate());
        System.out.println("Author List: " + authorList);
        System.out.println("ISBN: " + book.getIsbn());
    }
}

Book.java

package library.domain;

import java.util.ArrayList;
import java.util.Objects;

public class Book {

    private String isbn;
    private ArrayList<String> authorList;

    public Book(String isbn, ArrayList<String> authorList)
    {
        this.isbn = isbn;
        this.authorList = authorList;
    }

    public String getIsbn()             //access to isbn and manages  next value
    {
        return isbn;
    }

    public void setIsbn(String isbn)            //assigns the input isbn to the data member isbn
    {
        this.isbn = isbn;
    }
//assigns the input author to the data member author

    public ArrayList<String> getAuthorList()
    {
        return authorList;
    }

    public void setAuthorList(ArrayList<String> authorList)
    {
        this.authorList = authorList;
    }

    @Override
    public boolean equals(Object obj)           //checks  equality of two objects - true if same, false if different
    {
        if (this == obj) {
            return true;
        }
        if (!(obj instanceof Book)) {
            return false;
        }

        Book book = (Book) obj;
        if (!this.isbn.equals(book.isbn)) {
            return false;
        }
        if (!this.authorList.equals(book.authorList)) {
            return false;
        }
        return true;
    }

    @Override
    public int hashCode()           //override hash
    {
        int hash = 7;
        hash = 97 * hash + Objects.hashCode(this.authorList);
        hash = 97 * hash + Objects.hashCode(this.isbn);
        return hash;
    }

    public boolean validate()           //validate isbn and author not null
    {
        if (isbn == null || isbn.equals("")) {
            return false;
        }
        if (authorList == null || authorList.equals("")) {
            return false;
        }
        {
            return true;
        }
    }
}

BookTest.java

package library.domain;

import java.util.ArrayList;
import static org.junit.Assert.assertEquals;
import org.junit.Test;

public class BookTest {

    private ArrayList<String> authorList = new ArrayList<>();
    private String isbn;

    @Test
    public void testEquals()                //test Equals() for accuracy
    {
        System.out.println("equals");
        authorList.add("Bob Smith");
        authorList.add("Jane Doe");
        Book book = new Book("12345", authorList);
        assertEquals("expected true", true, book.equals(book));
        System.out.println("Author List: " + authorList);
        System.out.println("ISBN: " + isbn);
    }

    @Test
    public void testValidate()          //test Validate() for accuracy
    {
        System.out.println("validate");
        authorList.add("Bob Smith");
        authorList.add("Jane Doe");
        Book book = new Book("12345", authorList);
        assertEquals("expected true", true, book.validate());
        System.out.println("Author List: " + authorList);
        System.out.println("ISBN: " + isbn);
    }
}

最佳答案

测试类中的 isbn 是一个局部变量,您没有为其设置任何值。要检查对象是否正确创建,请尝试打印 book.getAuthorList() 和 book.getIsbn()

关于java - bookTest.java 打印出作者 arrayList,但不打印 isbn,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31546776/

相关文章:

java - 通过动态参数反射调用方法

java - 我们可以将java编译器集成到azure应用程序中吗?

java - ArrayList .get 和 .add 与变量 Java

algorithm - 如何将条形码解码为 ISBN?

java - java结果集和mysql游标的区别

java - 将十六进制转换为字节的字节到十六进制反转程序

c++ - 简单的 C++ 数组逻辑问题

java - 在 j2ee 应用程序中为 isbn 编号建模的正确方法

java - 如何按实体的 Y 值对实体的 ArrayList 进行排序?

安卓 : Search from Large Arraylist