commit
fcafd2abdb
|
|
@ -19,16 +19,13 @@ package org.springframework.boot.docs.features.testing.springbootapplications.jm
|
||||||
import javax.management.MBeanServer;
|
import javax.management.MBeanServer;
|
||||||
|
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
import org.junit.jupiter.api.extension.ExtendWith;
|
|
||||||
|
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.boot.test.context.SpringBootTest;
|
import org.springframework.boot.test.context.SpringBootTest;
|
||||||
import org.springframework.test.annotation.DirtiesContext;
|
import org.springframework.test.annotation.DirtiesContext;
|
||||||
import org.springframework.test.context.junit.jupiter.SpringExtension;
|
|
||||||
|
|
||||||
import static org.assertj.core.api.Assertions.assertThat;
|
import static org.assertj.core.api.Assertions.assertThat;
|
||||||
|
|
||||||
@ExtendWith(SpringExtension.class)
|
|
||||||
@SpringBootTest(properties = "spring.jmx.enabled=true")
|
@SpringBootTest(properties = "spring.jmx.enabled=true")
|
||||||
@DirtiesContext
|
@DirtiesContext
|
||||||
class MyJmxTests {
|
class MyJmxTests {
|
||||||
|
|
|
||||||
|
|
@ -20,13 +20,10 @@ import javax.management.MBeanServer
|
||||||
|
|
||||||
import org.assertj.core.api.Assertions.assertThat
|
import org.assertj.core.api.Assertions.assertThat
|
||||||
import org.junit.jupiter.api.Test
|
import org.junit.jupiter.api.Test
|
||||||
import org.junit.jupiter.api.extension.ExtendWith
|
|
||||||
import org.springframework.beans.factory.annotation.Autowired
|
import org.springframework.beans.factory.annotation.Autowired
|
||||||
import org.springframework.boot.test.context.SpringBootTest
|
import org.springframework.boot.test.context.SpringBootTest
|
||||||
import org.springframework.test.annotation.DirtiesContext
|
import org.springframework.test.annotation.DirtiesContext
|
||||||
import org.springframework.test.context.junit.jupiter.SpringExtension
|
|
||||||
|
|
||||||
@ExtendWith(SpringExtension::class)
|
|
||||||
@SpringBootTest(properties = ["spring.jmx.enabled=true"])
|
@SpringBootTest(properties = ["spring.jmx.enabled=true"])
|
||||||
@DirtiesContext
|
@DirtiesContext
|
||||||
class MyJmxTests(@Autowired val mBeanServer: MBeanServer) {
|
class MyJmxTests(@Autowired val mBeanServer: MBeanServer) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue