Skip to content

Commit

Permalink
Merge pull request #916 from ebocher/release_1_0_0
Browse files Browse the repository at this point in the history
Release 1 0 0
  • Loading branch information
ebocher authored Jan 14, 2024
2 parents 39e0b6e + c520de8 commit 1ef4651
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ import picocli.CommandLine

import java.util.regex.Pattern

import static org.junit.jupiter.api.Assertions.assertNotNull

/**
* Test class dedicated to {@link Geoclimate}.
*
Expand Down Expand Up @@ -62,7 +64,7 @@ class GeoclimateTest {

@Test
void propertiesTest() {
assert "1.0.0-SNAPSHOT" == Geoclimate.version
assertNotNull Geoclimate.version
assert Pattern.compile("^\\d{4}-\\d{2}-\\d{2}").matcher(Geoclimate.build).matches()
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -533,10 +533,9 @@ class WorkflowGeoIndicatorsTest {
assertEquals(0, countResult.count)
}

@Disabled
@Test
void GeoClimateProperties() {
assert "1.0.0-SNAPSHOT" == Geoindicators.version()
assertNotNull Geoindicators.version()
assertNotNull Geoindicators.buildNumber()
}

Expand Down

0 comments on commit 1ef4651

Please sign in to comment.