Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public Product(String productId, String productName, String productDescription,
super();
this.productId = productId;
this.productName = productName;
this.productDescription = productDescription;
this.productid = productid;
this.productCategory = productCategory;
this.units = units;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class TestMainController {
@InjectMocks
private MainController mainController;

@Mock
@Mocking
private ProductService productService;

@Test
Expand Down