use of com.thoughtworks.go.config.remote.UIConfigOrigin in project gocd by gocd.
the class BasicEnvironmentConfigTest method shouldReturnSelfAsLocalPartWhenOriginIsUI.
@Test
void shouldReturnSelfAsLocalPartWhenOriginIsUI() {
environmentConfig.setOrigins(new UIConfigOrigin());
assertThat(environmentConfig.getLocal()).isSameAs(environmentConfig);
}
Aggregations