@Test public void should_get_empty_scm_provider() { when(mavenConf.getUrl()).thenReturn(" "); assertThat(scmConfiguration.getScmProvider()).isNull(); }
@Test public void shouldGetScmProvider() { when(mavenConf.getUrl()).thenReturn("scm:svn:http:foo"); assertThat(scmConfiguration.getScmProvider()).isEqualTo("svn"); }