Skip to content

Commit

Permalink
Add display names
Browse files Browse the repository at this point in the history
Co-authored-by: ZieglerAaron <s0588522@htw-berlin.de>
  • Loading branch information
TheoThmn and ZieglerAaron committed Jan 7, 2024
1 parent 13f2fa4 commit dada76b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/test/java/webtech/filmfriend/CameramodelServiceTest.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package webtech.filmfriend;

import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
Expand All @@ -20,6 +21,7 @@ class CameramodelServiceTest {
CameramodelRepo cameramodelRepo;

@Test
@DisplayName("Should find cameramodel by id")
void get() {
var cameramodelNikon = new Cameramodel();
var cameramodelCanon = new Cameramodel();
Expand Down
2 changes: 2 additions & 0 deletions src/test/java/webtech/filmfriend/RollServiceTest.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package webtech.filmfriend;

import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
Expand All @@ -20,6 +21,7 @@ class RollServiceTest {
RollRepo repo;

@Test
@DisplayName("Test get all rolls")
void getAllRolls() {
var roll1 = new Roll(10L, null);
roll1.setNotes("roll1");
Expand Down

0 comments on commit dada76b

Please sign in to comment.