Skip to content

Commit

Permalink
chore: add a single test to make sonar happy (#5)
Browse files Browse the repository at this point in the history
Co-authored-by: filipe <[email protected]>
  • Loading branch information
filipelautert and filipe authored Jul 17, 2024
1 parent eb21885 commit 8349b54
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/test/groovy/liquibase/AwsLicenseServiceTest.groovy
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package liquibase

import org.junit.jupiter.api.Test

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

class AwsLicenseServiceTest {

@Test
void getPriority_returnsMaxInteger() {
assertEquals(Integer.MAX_VALUE, new AwsLicenseService().getPriority())
}
}

0 comments on commit 8349b54

Please sign in to comment.