You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sentry-samples/sentry-samples-spring-boot-4-webflux/src/test/kotlin/io/sentry/systemtest/PersonSystemTest.kt
Copy file name to clipboardExpand all lines: sentry-samples/sentry-samples-spring-boot-jakarta-opentelemetry/src/test/kotlin/io/sentry/systemtest/PersonSystemTest.kt
+21Lines changed: 21 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,7 @@
1
1
packageio.sentry.systemtest
2
2
3
3
importio.sentry.protocol.FeatureFlag
4
+
importio.sentry.protocol.SentryId
4
5
importio.sentry.systemtest.util.TestHelper
5
6
importkotlin.test.Test
6
7
importkotlin.test.assertEquals
@@ -75,6 +76,26 @@ class PersonSystemTest {
75
76
}
76
77
}
77
78
79
+
@Test
80
+
fun`create person starts a profile linked to the transaction`() {
81
+
var profilerId:SentryId?=null
82
+
val restClient = testHelper.restClient
83
+
val person =Person("firstA", "lastB")
84
+
val returnedPerson = restClient.createPerson(person)
Copy file name to clipboardExpand all lines: sentry-samples/sentry-samples-spring-boot-jakarta/src/test/kotlin/io/sentry/systemtest/PersonSystemTest.kt
+21Lines changed: 21 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,7 @@
1
1
packageio.sentry.systemtest
2
2
3
3
importio.sentry.protocol.FeatureFlag
4
+
importio.sentry.protocol.SentryId
4
5
importio.sentry.systemtest.util.TestHelper
5
6
importkotlin.test.Test
6
7
importkotlin.test.assertEquals
@@ -72,4 +73,24 @@ class PersonSystemTest {
72
73
)
73
74
}
74
75
}
76
+
77
+
@Test
78
+
fun`create person starts a profile linked to the transaction`() {
79
+
var profilerId:SentryId?=null
80
+
val restClient = testHelper.restClient
81
+
val person =Person("firstA", "lastB")
82
+
val returnedPerson = restClient.createPerson(person)
Copy file name to clipboardExpand all lines: sentry-samples/sentry-samples-spring-boot-opentelemetry/src/test/kotlin/io/sentry/systemtest/PersonSystemTest.kt
+21Lines changed: 21 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,7 @@
1
1
packageio.sentry.systemtest
2
2
3
3
importio.sentry.protocol.FeatureFlag
4
+
importio.sentry.protocol.SentryId
4
5
importio.sentry.systemtest.util.TestHelper
5
6
importkotlin.test.Test
6
7
importkotlin.test.assertEquals
@@ -75,6 +76,26 @@ class PersonSystemTest {
75
76
}
76
77
}
77
78
79
+
@Test
80
+
fun`create person starts a profile linked to the transaction`() {
81
+
var profilerId:SentryId?=null
82
+
val restClient = testHelper.restClient
83
+
val person =Person("firstA", "lastB")
84
+
val returnedPerson = restClient.createPerson(person)
0 commit comments