parent
7cb13eb16e
commit
0ddf8be151
|
|
@ -34,7 +34,7 @@ import static org.assertj.core.api.Assertions.assertThat;
|
|||
*
|
||||
* @author Johannes Graf
|
||||
*/
|
||||
class StackdriverMetricsExportAutoConfigurationTest {
|
||||
class StackdriverMetricsExportAutoConfigurationTests {
|
||||
|
||||
private final ApplicationContextRunner contextRunner = new ApplicationContextRunner()
|
||||
.withConfiguration(AutoConfigurations.of(StackdriverMetricsExportAutoConfiguration.class));
|
||||
|
|
@ -45,7 +45,7 @@ class StackdriverMetricsExportAutoConfigurationTest {
|
|||
}
|
||||
|
||||
@Test
|
||||
void failsWithoutAnProjectId() {
|
||||
void failsWithoutAProjectId() {
|
||||
this.contextRunner.withUserConfiguration(BaseConfiguration.class)
|
||||
.run((context) -> assertThat(context).hasFailed());
|
||||
}
|
||||
|
|
@ -25,7 +25,7 @@ import static org.assertj.core.api.Assertions.assertThat;
|
|||
*
|
||||
* @author Johannes Graf
|
||||
*/
|
||||
class StackdriverPropertiesConfigAdapterTest {
|
||||
class StackdriverPropertiesConfigAdapterTests {
|
||||
|
||||
@Test
|
||||
void whenPropertiesProjectIdIsSetAdapterProjectIdReturnsIt() {
|
||||
|
|
@ -28,7 +28,7 @@ import static org.assertj.core.api.Assertions.assertThat;
|
|||
*
|
||||
* @author Johannes Graf
|
||||
*/
|
||||
class StackdriverPropertiesTest extends StepRegistryPropertiesTests {
|
||||
class StackdriverPropertiesTests extends StepRegistryPropertiesTests {
|
||||
|
||||
@Test
|
||||
void defaultValuesAreConsistent() {
|
||||
Loading…
Reference in New Issue