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
| test data |`DATA_ATTRIBUTES`| Data providers for `#[Test]`methods |
161
+
| test + data |`TEST_DATA_ATTRIBUTES`|`#[Test]`+ data providers, numbered together|
162
162
| inline |`TEST_INLINE_ATTRIBUTES`| Inline test cases (`#[TestInline]`) |
163
163
| bench |`BENCH_ATTRIBUTES`| Benchmark data (`#[Bench]`) |
164
164
165
-
The `#[Test]` attribute itself is **not numbered** — it is a marker only. The method/function name already gets its own gutter line marker. `Test` IS included in `RUNNABLE_ATTRIBUTES` (it's runnable), but `getAttributeOrder` returns `-1` for it, and the line marker falls back to `getLocationInfo`.
166
-
167
-
The `#[Test]` attribute itself is **not numbered** — it is a marker only. The method/function name already gets its own gutter line marker.
168
-
169
165
Example for a function `foo` with multiple attributes:
0 commit comments