Skip to content

Commit

Permalink
refactor: remove public modifier from test methods
Browse files Browse the repository at this point in the history
Signed-off-by: Maximillian Arruda <maximillian.arruda@MBP-de-Digibee.local>
  • Loading branch information
Maximillian Arruda authored and Maximillian Arruda committed Nov 13, 2023
1 parent 670ab10 commit ee09c5c
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@
@AddPackages(Reflections.class)
@AddExtensions({EntityMetadataExtension.class,
DocumentExtension.class})
public class DocumentEntityConverterTest {
class DocumentEntityConverterTest {

@Inject
private DocumentEntityConverter converter;

@Test
public void shouldConverterToDocument() {
void shouldConverterToDocument() {
ObjectId id = new ObjectId();
Music music = new Music(id.toString(), "Music", 2021);
DocumentEntity entity = converter.toDocument(music);
Expand All @@ -53,7 +53,7 @@ public void shouldConverterToDocument() {
}

@Test
public void shouldConvertToEntity() {
void shouldConvertToEntity() {
ObjectId id = new ObjectId();
DocumentEntity entity = DocumentEntity.of("Music");
entity.add("name", "Music");
Expand Down

0 comments on commit ee09c5c

Please sign in to comment.