1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2025-09-10 10:49:39 +02:00

Bump sop-java to 10.0.0-SNAPSHOT and implement sopv interface subset

This commit is contained in:
Paul Schaub 2024-03-17 15:54:30 +01:00
parent fa5bdfcd82
commit 3ac273757a
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311
5 changed files with 59 additions and 3 deletions

View file

@ -72,4 +72,11 @@ public class VersionTest {
assertTrue(fullSopSpecVersion.endsWith(incompletenessRemarks));
}
}
@Test
public void testGetSopVVersion() {
String sopVVersion = sop.version().getSopVVersion();
assertNotNull(sopVVersion);
assertTrue(sopVVersion.matches("\\d+\\.\\d+(\\.\\d+)*")); // X.Y or X.Y.Z... etc.
}
}