17
17
18
18
class NotManagedTypeExceptionIntegrationTest {
19
19
@ Test
20
- void givenEntityWithoutAnnotationApplication_WhenBootstrap_ThenExpectedExceptionThrown () {
20
+ void givenEntityWithoutAnnotationApplication_whenBootstrap_thenExpectedExceptionThrown () {
21
21
Exception exception = assertThrows (Exception .class ,
22
22
() -> run (EntityWithoutAnnotationApplication .class ));
23
23
@@ -27,7 +27,7 @@ void givenEntityWithoutAnnotationApplication_WhenBootstrap_ThenExpectedException
27
27
}
28
28
29
29
@ Test
30
- void givenEntityWithoutAnnotationApplicationFixed_WhenBootstrap_ThenRepositoryBeanShouldBePresentInContext () {
30
+ void givenEntityWithoutAnnotationApplicationFixed_whenBootstrap_thenRepositoryBeanShouldBePresentInContext () {
31
31
ConfigurableApplicationContext context = run (EntityWithoutAnnotationFixedApplication .class );
32
32
EntityWithoutAnnotationFixedRepository repository = context
33
33
.getBean (EntityWithoutAnnotationFixedRepository .class );
@@ -36,7 +36,7 @@ void givenEntityWithoutAnnotationApplicationFixed_WhenBootstrap_ThenRepositoryBe
36
36
}
37
37
38
38
@ Test
39
- void givenEntityWithJakartaAnnotationApplication_WhenBootstrap_ThenExpectedExceptionThrown () {
39
+ void givenEntityWithJakartaAnnotationApplication_whenBootstrap_thenExpectedExceptionThrown () {
40
40
Exception exception = assertThrows (Exception .class ,
41
41
() -> run (EntityWithJakartaAnnotationApplication .class ));
42
42
@@ -46,7 +46,7 @@ void givenEntityWithJakartaAnnotationApplication_WhenBootstrap_ThenExpectedExcep
46
46
}
47
47
48
48
@ Test
49
- void givenWrongEntityScanApplication_WhenBootstrap_ThenExpectedExceptionThrown () {
49
+ void givenWrongEntityScanApplication_whenBootstrap_thenExpectedExceptionThrown () {
50
50
Exception exception = assertThrows (Exception .class ,
51
51
() -> run (WrongEntityScanApplication .class ));
52
52
@@ -56,7 +56,7 @@ void givenWrongEntityScanApplication_WhenBootstrap_ThenExpectedExceptionThrown()
56
56
}
57
57
58
58
@ Test
59
- void givenWrongEntityScanApplicationFixed_WhenBootstrap_ThenRepositoryBeanShouldBePresentInContext () {
59
+ void givenWrongEntityScanApplicationFixed_whenBootstrap_thenRepositoryBeanShouldBePresentInContext () {
60
60
ConfigurableApplicationContext context = run (WrongEntityScanFixedApplication .class );
61
61
CorrectEntityRepository repository = context
62
62
.getBean (CorrectEntityRepository .class );
0 commit comments