@@ -76,25 +76,19 @@ Feature: Nested spans
7676 | bugsnag .span .category | stringValue | custom |
7777 | bugsnag .span .first_class | boolValue | true |
7878
79- # Check span parentage (nested under NestedSpansActivity)
80- * the "[ViewLoadPhase/ActivityStart]NestedSpansActivity" span field "spanId" is stored as the value "activity_start_span_id"
81- * the "[ViewLoadPhase/ActivityResume]NestedSpansActivity" span field "spanId" is stored as the value "activity_resume_span_id"
82- * the "[ViewLoad/Activity]NestedSpansActivity" span field "spanId" is stored as the value "view_load_span_id"
83- * the "CustomRoot" span field "spanId" is stored as the value "custom_root_span_id"
84-
8579 # ViewLoadPhase phase spans (Create, Start, Resume) should be nested under ViewLoad
86- * the "[ViewLoadPhase/ActivityCreate]NestedSpansActivity" span field "parentSpanId" equals the stored value "view_load_span_id "
87- * the "[ViewLoadPhase/ActivityStart]NestedSpansActivity" span field "parentSpanId" equals the stored value "view_load_span_id "
88- * the "[ViewLoadPhase/ActivityResume]NestedSpansActivity" span field "parentSpanId" equals the stored value "view_load_span_id "
80+ * a span named "[ViewLoadPhase/ActivityCreate]NestedSpansActivity" has a parent named "[ViewLoad/Activity]NestedSpansActivity "
81+ * a span named "[ViewLoadPhase/ActivityStart]NestedSpansActivity" has a parent named "[ViewLoad/Activity]NestedSpansActivity "
82+ * a span named "[ViewLoadPhase/ActivityResume]NestedSpansActivity" has a parent named "[ViewLoad/Activity]NestedSpansActivity "
8983
9084 # FirstFragment should be nested under ViewLoadPhase/Start
91- * the "[ViewLoad/Fragment]FirstFragment" span field "parentSpanId" equals the stored value "activity_start_span_id "
85+ * a span named "[ViewLoad/Fragment]FirstFragment" has a parent named "[ViewLoadPhase/ActivityStart]NestedSpansActivity "
9286
9387 # CustomRoot should be nested under ViewLoadPhase/Resume
94- * the "CustomRoot" span field "parentSpanId" equals the stored value "activity_resume_span_id "
88+ * a span named "CustomRoot" has a parent named "[ViewLoadPhase/ActivityResume]NestedSpansActivity "
9589
9690 # Remaining spans (SecondFragment, DoStuff, LoadData) should be nested under CustomRoot
97- * the "[ViewLoad/Fragment]SecondFragment" span field "parentSpanId" equals the stored value "custom_root_span_id "
98- * the "DoStuff" span field "parentSpanId" equals the stored value "custom_root_span_id "
99- * the "LoadData" span field "parentSpanId" equals the stored value "custom_root_span_id "
91+ * a span named "[ViewLoad/Fragment]SecondFragment" has a parent named "CustomRoot "
92+ * a span named "DoStuff" has a parent named "CustomRoot "
93+ * a span named "LoadData" has a parent named "CustomRoot "
10094
0 commit comments