See gh-27405
This commit is contained in:
izeye 2021-07-19 22:20:16 +09:00 committed by Andy Wilkinson
parent 51fedd6528
commit 14d8c33125
1 changed files with 3 additions and 4 deletions

View File

@ -54,7 +54,6 @@ class DynatracePropertiesConfigAdapterTests {
} }
@Test @Test
@Deprecated
void whenPropertiesV1DeviceIdIsSetAdapterDeviceIdReturnsIt() { void whenPropertiesV1DeviceIdIsSetAdapterDeviceIdReturnsIt() {
DynatraceProperties properties = new DynatraceProperties(); DynatraceProperties properties = new DynatraceProperties();
properties.getV1().setDeviceId("dev-1"); properties.getV1().setDeviceId("dev-1");
@ -113,21 +112,21 @@ class DynatracePropertiesConfigAdapterTests {
} }
@Test @Test
void whenPropertiesMetricKeyPrefixIsSetAdapterGroupReturnsIt() { void whenPropertiesMetricKeyPrefixIsSetAdapterMetricKeyPrefixReturnsIt() {
DynatraceProperties properties = new DynatraceProperties(); DynatraceProperties properties = new DynatraceProperties();
properties.getV2().setMetricKeyPrefix("my.prefix"); properties.getV2().setMetricKeyPrefix("my.prefix");
assertThat(new DynatracePropertiesConfigAdapter(properties).metricKeyPrefix()).isEqualTo("my.prefix"); assertThat(new DynatracePropertiesConfigAdapter(properties).metricKeyPrefix()).isEqualTo("my.prefix");
} }
@Test @Test
void whenPropertiesEnrichWithOneAgentMetadataIsSetAdapterGroupReturnsIt() { void whenPropertiesEnrichWithOneAgentMetadataIsSetAdapterEnrichWithOneAgentMetadataReturnsIt() {
DynatraceProperties properties = new DynatraceProperties(); DynatraceProperties properties = new DynatraceProperties();
properties.getV2().setEnrichWithDynatraceMetadata(true); properties.getV2().setEnrichWithDynatraceMetadata(true);
assertThat(new DynatracePropertiesConfigAdapter(properties).enrichWithDynatraceMetadata()).isTrue(); assertThat(new DynatracePropertiesConfigAdapter(properties).enrichWithDynatraceMetadata()).isTrue();
} }
@Test @Test
void whenPropertiesDefaultDimensionsIsSetAdapterGroupReturnsIt() { void whenPropertiesDefaultDimensionsIsSetAdapterDefaultDimensionsReturnsIt() {
DynatraceProperties properties = new DynatraceProperties(); DynatraceProperties properties = new DynatraceProperties();
HashMap<String, String> defaultDimensions = new HashMap<>(); HashMap<String, String> defaultDimensions = new HashMap<>();
defaultDimensions.put("dim1", "value1"); defaultDimensions.put("dim1", "value1");