Objects First with Java: A Practical Introduction Using BlueJ (6th Edition)
Objects First with Java: A Practical Introduction Using BlueJ (6th Edition)
6th Edition
ISBN: 9780134477367
Author: David J. Barnes, Michael Kolling
Publisher: PEARSON
Question
Book Icon
Chapter 9, Problem 20E
Program Plan Intro

Program plan:

The variables used in the program are given below:

  1. item: SalesItem - an instance of the SalesItem class, which represents a sales item being sold on a website or in a store.
  2. comment1: Comment - an instance of the Comment class, which represents a comment left by a user about the sales item.
  3. comment2: Comment - another instance of the Comment class, representing a second comment about the sales item.
  4. comment3: Comment - a third instance of the Comment class, representing a third comment about the sales item.

The methods used in the program are as follows:

  1. addComment(comment: Comment): void - a method of the SalesItem class that adds a new Comment object to the item's list of comments.
  2. getComments(): List - a method of the SalesItem class that returns a list of all Comment objects that have been added to the item.
  3. assertEquals(expected: int, actual: int): void - a method of the org.junit.Assert class that checks if two integer values are equal, and throws an assertion error if they are not.
  4. assertTrue(condition: boolean): void - a method of the org.junit.Assert class that checks if a given boolean condition is true, and throws an assertion error if it is not.
  5. testAddNullComment(): a unit test method that tests the behavior of the SalesItem class when attempting to add a null comment to an item. Expects an IllegalArgumentException to be thrown.

Program Description:

The given code is a unit test written in JUnit framework for the addComment() method of the SalesItem class. It creates a new SalesItem object with a name and description and then adds three comments to it using addComment() method. The test then checks that the comments were added successfully by verifying that the size of the SalesItem's comments list is 3 and that each of the three comments is contained in the list. This is an important test to ensure that comments can be successfully added to a SalesItem object, which is a critical feature of the class for user interaction and feedback.

Blurred answer
Students have asked these similar questions
Using the following execution shown below, explain what is done in each of the ARIES recovery algorithm phases: LSN   LOG 00   begin_checkpoint 10 end_checkpoint 20 update: T1 writes P1 30 update: T2 writes P2 40 update: T3 writes P3 50 T2 commit 60 update: T3 writes P2 70 T2 end 80 update: T1 writes P5 90 T3 abort   CRASH, RESTART In addition to the execution shown here, the system crashes during recovery after writing two log records to stable storage and again after writing another two log records
A new application is being developed and will be using a database that includes a relation about items: Item (item_id:integer, item_name:string, color:string, price:real). Both the purchasing department in charge of obtaining raw material and the manufacturing department in charge of manufacturing the items can change the price of manufactured items according to changes that may happen in the raw material cost or production cost. The two departments use different transactions to update the price of items. The new application uses the following sequences of actions, listed in the order they are submitted to the DBMS: Sequence S1: T1:R(X), T2:W(X), T2:W(Y), T3:W(Y), T1:W(Y), T1:Commit, T2:Commit, T3:Commit Sequence S2: T1:R(X), T2:W(Y), T2:W(X), T3:W(Y), T1:W(Y), T1:Commit, T2:Commit, T3:Commit For each of the following concurrency control mechanisms, describe how they will handle each of the sequences (S1 & S2). Strict 2PL with timestamps used for deadlock prevention. Conservative…
As a database administrator of a large manufacturing organization, you are in charge of their website database that handles suppliers, parts, catalog, customers, and payments of delivered items. The following relations are part of the large database: Supplier(SID, Sname, Saddress, Stelephone)Customer(CID, Cname, Caddress, Ctelephone)Part(PID, Pname, Pmodel, Pcolor)Catalog(SID, PID, Price) (The Catalog relation lists the prices charged for parts by Suppliers). Because the application is web-based and the database is accessed by many users, you want to increase the concurrency usage without compromising the data quality. For each of the following transactions, state the minimum SQL isolation level you would use in order to avoid any conflict problems in them. Please explain your choice. A transaction that adds a new part to a supplier’s catalog. A transaction that increases the price that a supplier charges for a part. A transaction that determines the total number of items for a given…
Knowledge Booster
Background pattern image
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
Text book image
CMPTR
Computer Science
ISBN:9781337681872
Author:PINARD
Publisher:Cengage
Text book image
Microsoft Visual C#
Computer Science
ISBN:9781337102100
Author:Joyce, Farrell.
Publisher:Cengage Learning,
Text book image
Programming Logic & Design Comprehensive
Computer Science
ISBN:9781337669405
Author:FARRELL
Publisher:Cengage
Text book image
C++ Programming: From Problem Analysis to Program...
Computer Science
ISBN:9781337102087
Author:D. S. Malik
Publisher:Cengage Learning
Text book image
Programming with Microsoft Visual Basic 2017
Computer Science
ISBN:9781337102124
Author:Diane Zak
Publisher:Cengage Learning
Text book image
New Perspectives on HTML5, CSS3, and JavaScript
Computer Science
ISBN:9781305503922
Author:Patrick M. Carey
Publisher:Cengage Learning