File tree 17 files changed +241
-1
lines changed
spring-4/src/test/java/org/baeldung
spring-5/src/test/java/org/baeldung
spring-5-data-reactive/src/test/java/org/baeldung
spring-5-reactive/src/test/java/org/baeldung
spring-5-reactive-client/src/test/java/org/baeldung
spring-5-reactive-security/src/test/java/org/baeldung
spring-5-security/src/test/java/org/baeldung
spring-activiti/src/test/java/org/baeldung
spring-amqp-simple/src/test/java/org/baeldung
spring-aop/src/test/java/org/baeldung
spring-apache-camel/src/test/java/org/baeldung
src/test/java/org/baeldung
spring-bom/src/test/java/org/baeldung
spring-boot-admin-client/src/test/java/org/baeldung
spring-boot-admin-server/src/test/java/org/baeldung
spring-boot-bootstrap/src/test/java/org/baeldung
17 files changed +241
-1
lines changed Original file line number Diff line number Diff line change
1
+ package org .baeldung ;
2
+
3
+ import org .junit .Test ;
4
+ import org .junit .runner .RunWith ;
5
+ import org .springframework .boot .test .context .SpringBootTest ;
6
+ import org .springframework .test .context .junit4 .SpringRunner ;
7
+
8
+ import com .baeldung .flips .ApplicationConfig ;
9
+
10
+ @ RunWith (SpringRunner .class )
11
+ @ SpringBootTest (classes = ApplicationConfig .class )
12
+ public class SpringContextIntegrationTest {
13
+
14
+ @ Test
15
+ public void whenSpringContextIsBootstrapped_thenNoExceptions () {
16
+ }
17
+ }
Original file line number Diff line number Diff line change
1
+ package org .baeldung ;
2
+
3
+ import org .junit .Test ;
4
+ import org .junit .runner .RunWith ;
5
+ import org .springframework .boot .test .context .SpringBootTest ;
6
+ import org .springframework .test .context .junit4 .SpringRunner ;
7
+
8
+ import com .baeldung .reactive .Spring5ReactiveApplication ;
9
+
10
+ @ RunWith (SpringRunner .class )
11
+ @ SpringBootTest (classes = Spring5ReactiveApplication .class )
12
+ public class SpringContextIntegrationTest {
13
+
14
+ @ Test
15
+ public void whenSpringContextIsBootstrapped_thenNoExceptions () {
16
+ }
17
+ }
Original file line number Diff line number Diff line change
1
+ package org .baeldung ;
2
+
3
+ import org .junit .Test ;
4
+ import org .junit .runner .RunWith ;
5
+ import org .springframework .boot .test .context .SpringBootTest ;
6
+ import org .springframework .test .context .junit4 .SpringRunner ;
7
+
8
+ import com .baeldung .reactive .Spring5ReactiveTestApplication ;
9
+
10
+ @ RunWith (SpringRunner .class )
11
+ @ SpringBootTest (classes = Spring5ReactiveTestApplication .class )
12
+ public class SpringContextIntegrationTest {
13
+
14
+ @ Test
15
+ public void whenSpringContextIsBootstrapped_thenNoExceptions () {
16
+ }
17
+ }
Original file line number Diff line number Diff line change
1
+ package org .baeldung ;
2
+
3
+ import org .junit .Test ;
4
+ import org .junit .runner .RunWith ;
5
+ import org .springframework .boot .test .context .SpringBootTest ;
6
+ import org .springframework .test .context .junit4 .SpringRunner ;
7
+
8
+ import com .baeldung .reactive .security .SpringSecurity5Application ;
9
+
10
+ @ RunWith (SpringRunner .class )
11
+ @ SpringBootTest (classes = SpringSecurity5Application .class )
12
+ public class SpringContextIntegrationTest {
13
+
14
+ @ Test
15
+ public void whenSpringContextIsBootstrapped_thenNoExceptions () {
16
+ }
17
+ }
Original file line number Diff line number Diff line change
1
+ package org .baeldung ;
2
+
3
+ import org .junit .Test ;
4
+ import org .junit .runner .RunWith ;
5
+ import org .springframework .boot .test .context .SpringBootTest ;
6
+ import org .springframework .test .context .junit4 .SpringRunner ;
7
+
8
+ import com .baeldung .reactive .Spring5ReactiveApplication ;
9
+
10
+ @ RunWith (SpringRunner .class )
11
+ @ SpringBootTest (classes = Spring5ReactiveApplication .class )
12
+ public class SpringContextIntegrationTest {
13
+
14
+ @ Test
15
+ public void whenSpringContextIsBootstrapped_thenNoExceptions () {
16
+ }
17
+ }
Original file line number Diff line number Diff line change
1
+ package org .baeldung ;
2
+
3
+ import org .junit .Test ;
4
+ import org .junit .runner .RunWith ;
5
+ import org .springframework .boot .test .context .SpringBootTest ;
6
+ import org .springframework .test .context .junit4 .SpringRunner ;
7
+
8
+ import com .baeldung .dsl .CustomConfigurerApplication ;
9
+
10
+ @ RunWith (SpringRunner .class )
11
+ @ SpringBootTest (classes = CustomConfigurerApplication .class )
12
+ public class SpringContextIntegrationTest {
13
+
14
+ @ Test
15
+ public void whenSpringContextIsBootstrapped_thenNoExceptions () {
16
+ }
17
+ }
Original file line number Diff line number Diff line change
1
+ package org .baeldung ;
2
+
3
+ import org .junit .Test ;
4
+ import org .junit .runner .RunWith ;
5
+ import org .springframework .boot .test .context .SpringBootTest ;
6
+ import org .springframework .test .context .junit4 .SpringRunner ;
7
+
8
+ import com .baeldung .Spring5Application ;
9
+
10
+ @ RunWith (SpringRunner .class )
11
+ @ SpringBootTest (classes = Spring5Application .class )
12
+ public class SpringContextIntegrationTest {
13
+
14
+ @ Test
15
+ public void whenSpringContextIsBootstrapped_thenNoExceptions () {
16
+ }
17
+ }
Original file line number Diff line number Diff line change
1
+ package org .baeldung ;
2
+
3
+ import org .junit .Test ;
4
+ import org .junit .runner .RunWith ;
5
+ import org .springframework .boot .test .context .SpringBootTest ;
6
+ import org .springframework .test .context .junit4 .SpringRunner ;
7
+
8
+ import com .example .activitiwithspring .ActivitiWithSpringApplication ;
9
+
10
+ @ RunWith (SpringRunner .class )
11
+ @ SpringBootTest (classes = ActivitiWithSpringApplication .class )
12
+ public class SpringContextIntegrationTest {
13
+
14
+ @ Test
15
+ public void whenSpringContextIsBootstrapped_thenNoExceptions () {
16
+ }
17
+ }
Original file line number Diff line number Diff line change
1
+ package org .baeldung ;
2
+
3
+ import org .junit .Test ;
4
+ import org .junit .runner .RunWith ;
5
+ import org .springframework .boot .test .context .SpringBootTest ;
6
+ import org .springframework .test .context .junit4 .SpringRunner ;
7
+
8
+ import com .baeldung .springamqpsimple .SpringAmqpApplication ;
9
+
10
+ @ RunWith (SpringRunner .class )
11
+ @ SpringBootTest (classes = SpringAmqpApplication .class )
12
+ public class SpringContextIntegrationTest {
13
+
14
+ @ Test
15
+ public void whenSpringContextIsBootstrapped_thenNoExceptions () {
16
+ }
17
+ }
Original file line number Diff line number Diff line change
1
+ package org .baeldung ;
2
+
3
+ import org .junit .Test ;
4
+ import org .junit .runner .RunWith ;
5
+ import org .springframework .boot .test .context .SpringBootTest ;
6
+ import org .springframework .test .context .junit4 .SpringRunner ;
7
+
8
+ @ RunWith (SpringRunner .class )
9
+ @ SpringBootTest (classes = Application .class )
10
+ public class SpringContextIntegrationTest {
11
+
12
+ @ Test
13
+ public void whenSpringContextIsBootstrapped_thenNoExceptions () {
14
+ }
15
+ }
Original file line number Diff line number Diff line change
1
+ package org .baeldung ;
2
+
3
+ import org .junit .Test ;
4
+
5
+ import com .baeldung .camel .main .App ;
6
+
7
+ public class SpringContextIntegrationTest {
8
+
9
+ @ Test
10
+ public final void testMain () throws Exception {
11
+ App .main (null );
12
+ }
13
+ }
Original file line number Diff line number Diff line change
1
+ package org .baeldung ;
2
+
3
+ import org .baeldung .batch .App ;
4
+ import org .junit .Test ;
5
+
6
+ public class SpringContextIntegrationTest {
7
+
8
+ @ Test
9
+ public final void testMain () throws Exception {
10
+ App .main (null );
11
+ }
12
+ }
Original file line number Diff line number Diff line change
1
+ package org .baeldung ;
2
+
3
+ import org .junit .Test ;
4
+
5
+ import com .baeldung .spring .bom .HelloWorldApp ;
6
+
7
+ public class SpringContextIntegrationTest {
8
+
9
+ @ Test
10
+ public final void testMain () throws Exception {
11
+ HelloWorldApp .main (null );
12
+ }
13
+ }
Original file line number Diff line number Diff line change
1
+ package org .baeldung ;
2
+
3
+ import org .junit .Test ;
4
+ import org .junit .runner .RunWith ;
5
+ import org .springframework .boot .test .context .SpringBootTest ;
6
+ import org .springframework .test .context .junit4 .SpringRunner ;
7
+
8
+ import com .baeldung .springbootadminclient .SpringBootAdminClientApplication ;
9
+
10
+ @ RunWith (SpringRunner .class )
11
+ @ SpringBootTest (classes = SpringBootAdminClientApplication .class )
12
+ public class SpringContextIntegrationTest {
13
+
14
+ @ Test
15
+ public void whenSpringContextIsBootstrapped_thenNoExceptions () {
16
+ }
17
+ }
Original file line number Diff line number Diff line change
1
+ package org .baeldung ;
2
+
3
+ import org .junit .Test ;
4
+ import org .junit .runner .RunWith ;
5
+ import org .springframework .boot .test .context .SpringBootTest ;
6
+ import org .springframework .test .context .junit4 .SpringRunner ;
7
+
8
+ import com .baeldung .springbootadminserver .SpringBootAdminServerApplication ;
9
+
10
+ @ RunWith (SpringRunner .class )
11
+ @ SpringBootTest (classes = SpringBootAdminServerApplication .class )
12
+ public class SpringContextIntegrationTest {
13
+
14
+ @ Test
15
+ public void whenSpringContextIsBootstrapped_thenNoExceptions () {
16
+ }
17
+ }
Original file line number Diff line number Diff line change 7
7
8
8
@ RunWith (SpringRunner .class )
9
9
@ SpringBootTest
10
- public class SpringBootBootstrapApplicationIntegrationTest {
10
+ public class SpringContextIntegrationTest {
11
11
12
12
@ Test
13
13
public void contextLoads () {
You can’t perform that action at this time.
0 commit comments