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

Talathussain110 / ProductOrderManagement / #13

04 Dec 2025 06:40PM UTC coverage: 75.0%. Remained the same
#13

push

Talathussain110
Passing Tests for OrderWebController including (Listing, Edit, New,
Save, Delete, Message)

18 of 24 new or added lines in 2 files covered. (75.0%)

36 of 48 relevant lines covered (75.0%)

0.75 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/OrderService.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.Order;
8

9
@Service
NEW
10
public class OrderService {
×
11

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

14
        public Order getOrderById(long id) {
NEW
15
                throw new UnsupportedOperationException(TEMPORARY_IMPLEMENTATION);
×
16
        }
17

18
        public Order insertNewOrder(Order order) {
NEW
19
                throw new UnsupportedOperationException(TEMPORARY_IMPLEMENTATION);
×
20
        }
21

22
        public Order updateOrderById(long id, Order updatedOrder) {
NEW
23
                throw new UnsupportedOperationException(TEMPORARY_IMPLEMENTATION);
×
24
        }
25

26
        public void deleteOrderById(long id) {
NEW
27
                throw new UnsupportedOperationException(TEMPORARY_IMPLEMENTATION);
×
28
        }
29

30
        public List<Order> getAllOrders() {
NEW
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