Skip to content
Snippets Groups Projects
Verified Commit a689fb4b authored by Adam Krídl's avatar Adam Krídl
Browse files

Fix tests

parent 4548b62d
No related branches found
No related tags found
No related merge requests found
Pipeline #
package cz.muni.fi.pa165.core.service.common;
import cz.muni.fi.pa165.core.data.domain.common.DomainEntity;
import lombok.Getter;
import lombok.RequiredArgsConstructor;
import lombok.Setter;
import jakarta.persistence.Column;
import jakarta.persistence.Entity;
/**
* Sample object representing entity for the purpose of tests.
*/
@RequiredArgsConstructor
@Getter
@Setter
@Entity
public class TestObject extends DomainEntity {
private final String description;
@Column
private String description;
public TestObject() {
}
public TestObject(String description) {
this.description = description;
}
public String getDescription() {
return description;
}
}
package cz.muni.fi.pa165.core.service.common;
import org.springframework.stereotype.Service;
@Service
public interface TestObjectService extends BaseService<TestObject, Long> {
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment