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

database-rider / database-rider / #911

27 Oct 2024 07:44PM UTC coverage: 83.964% (+0.01%) from 83.951%
#911

push

web-flow
#610 fix support for parent classes hierarchy (#612)

* refs #610 fix annotation support for parent classes hierarchy

---------

Co-authored-by: Lee <hosing.lee@hsl-it-solutions.nl>

9 of 9 new or added lines in 1 file covered. (100.0%)

3084 of 3673 relevant lines covered (83.96%)

0.84 hits per line

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

0.0
/rider-examples/quarkus-postgres-sample/src/main/java/com/github/quarkus/postgres/DummyEntity.java
1
package com.github.quarkus.postgres;
2

3
import lombok.AllArgsConstructor;
4
import lombok.Data;
5
import lombok.NoArgsConstructor;
6

7
import javax.persistence.Column;
8
import javax.persistence.Entity;
9
import javax.persistence.Id;
10
import javax.persistence.Table;
11

12
@NoArgsConstructor
×
13
@AllArgsConstructor
×
14
@Data
×
15
@Table(name = "DUMMY")
16
@Entity
17
public class DummyEntity {
18
  @Id
19
  @Column(name = "ID")
20
  private int id;
×
21
}
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

© 2025 Coveralls, Inc