@Test
  public void should_be_able_to_read_system_values_with_default() {
    System.clearProperty(ThucydidesSystemProperty.THUCYDIDES_PUBLIC_URL.getPropertyName());

    String publicUrl =
        ThucydidesSystemProperties.getProperties()
            .getValue(ThucydidesSystemProperty.THUCYDIDES_PUBLIC_URL, "default");

    assertThat(publicUrl, is("default"));
  }