Skip to content

Commit

Permalink
gave tests proper names
Browse files Browse the repository at this point in the history
  • Loading branch information
0marperez authored Aug 7, 2023
1 parent e6508c9 commit 8872e86
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ import kotlin.test.assertTrue
*/
class UnwrappedXmlOutputIntegrationTest {
@Test
fun test() {
fun testNonS3Model() {
val model = model("NotS3")
val actual = UnwrappedXmlOutputIntegration().enabledForService(model, model.defaultSettings())
assertFalse(actual)
}

@Test
fun test2() {
fun testS3Model() {
val model = model("S3")
val actual = UnwrappedXmlOutputIntegration().enabledForService(model, model.defaultSettings())
assertTrue(actual)
Expand Down

0 comments on commit 8872e86

Please sign in to comment.