Skip to content

Commit

Permalink
add spring boot dep tests
Browse files Browse the repository at this point in the history
  • Loading branch information
smola committed Nov 15, 2024
1 parent 69483ba commit e077ee9
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,4 +86,9 @@ class SpringBootWebmvcIntegrationTest extends AbstractServerSmokeTest {
response.code() == 404
waitForTraceCount(1)
}

@Override
List<String> expectedTelemetryDependencies() {
['org.eclipse.jetty:jetty-client']
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -78,4 +78,9 @@ class SpringBootWebmvcIntegrationTest extends AbstractServerSmokeTest {
responseBodyStr.contains("banana")
waitForTraceCount(1)
}

@Override
List<String> expectedTelemetryDependencies() {
['spring-core']
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -78,4 +78,9 @@ class SpringBootWebmvcIntegrationTest extends AbstractServerSmokeTest {
responseBodyStr.contains("banana")
waitForTraceCount(1)
}

@Override
List<String> expectedTelemetryDependencies() {
['spring-core']
}
}

0 comments on commit e077ee9

Please sign in to comment.