• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

Talathussain110 / ProductOrderManagement / #7

02 Dec 2025 06:58PM UTC coverage: 46.154% (-3.8%) from 50.0%
#7

push

Talathussain110
Passing Tests for CREATE, UPDATE, and DELETE operations

10 of 12 new or added lines in 2 files covered. (83.33%)

6 existing lines in 2 files now uncovered.

12 of 26 relevant lines covered (46.15%)

0.46 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/main/java/com/example/demo/services/ProductService.java
1
package com.example.demo.services;
2

3
import java.util.List;
4

5
import org.springframework.stereotype.Service;
6

7
import com.example.demo.model.Product;
8

9
@Service
10
public class ProductService {
×
11

12
        private static final String TEMPORARY_IMPLEMENTATION = "Temporary implementation";
13

14
        public List<Product> getAllProducts() {
15
                throw new UnsupportedOperationException(TEMPORARY_IMPLEMENTATION);
×
16
        }
17

18
        public Product getProductById(long id) {
19
                throw new UnsupportedOperationException(TEMPORARY_IMPLEMENTATION);
×
20
        }
21
        
22
        public Product insertNewProduct(Product product) {
UNCOV
23
        throw new UnsupportedOperationException(TEMPORARY_IMPLEMENTATION);
×
24
    }
25

26
    public Product updateProductById(long id, Product replacement) {
UNCOV
27
        throw new UnsupportedOperationException(TEMPORARY_IMPLEMENTATION);
×
28
    }
29

30
    public void deleteProductById(long id) {
UNCOV
31
        throw new UnsupportedOperationException(TEMPORARY_IMPLEMENTATION);
×
32
    }
33
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc