Rename package
continuous-integration/drone/push Build is passing Details

This commit is contained in:
qvalentin 2022-03-06 11:02:21 +01:00
parent b01e2566e1
commit c8225dbdca
7 changed files with 9 additions and 9 deletions

View File

@ -1,4 +1,4 @@
package Category; package category;
/** /**
* A Category that can be assigned to a link to group links with similar content. * A Category that can be assigned to a link to group links with similar content.

View File

@ -1,4 +1,4 @@
package Category; package category;
public record CategoryId(int id) { public record CategoryId(int id) {
} }

View File

@ -1,6 +1,6 @@
package Category; package category;
import Exeptions.IllegalValueObjectArgument; import exeptions.IllegalValueObjectArgument;
import java.util.Objects; import java.util.Objects;

View File

@ -1,4 +1,4 @@
package Exeptions; package exeptions;
public class IllegalValueObjectArgument extends Exception { public class IllegalValueObjectArgument extends Exception {

View File

@ -1,4 +1,4 @@
package Category; package category;
import org.junit.jupiter.api.Test; import org.junit.jupiter.api.Test;

View File

@ -1,6 +1,6 @@
package Category; package category;
import Exeptions.IllegalValueObjectArgument; import exeptions.IllegalValueObjectArgument;
import org.junit.jupiter.api.Test; import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertEquals;

View File

@ -1,4 +1,4 @@
package Category; package category;
import org.junit.jupiter.api.Test; import org.junit.jupiter.api.Test;