@@ -53,32 +53,6 @@ public struct Test: Sendable {
53
53
/// The source location of this test.
54
54
public var sourceLocation : SourceLocation
55
55
56
- /// The (underestimated) number of iterations that will need to occur during
57
- /// testing.
58
- ///
59
- /// The value of this property is inherently capped at `Int.max`. In practice,
60
- /// the number of iterations that can run in a reasonable timespan will be
61
- /// significantly lower.
62
- ///
63
- /// For instances of ``Test`` that represent non-parameterized test functions
64
- /// (that is, test functions that do not iterate over a sequence of inputs),
65
- /// the value of this property is always `1`. For instances of ``Test`` that
66
- /// represent test suite types, the value of this property is always `nil`.
67
- ///
68
- /// For more information about underestimated counts, see the documentation
69
- /// for [`Sequence`](https://developer.apple.com/documentation/swift/array/underestimatedcount-4ggqp).
70
- @_spi ( ExperimentalParameterizedTesting)
71
- public var underestimatedCaseCount : Int ? {
72
- // NOTE: it is important that we only expose an _underestimated_ count for
73
- // two reasons:
74
- // 1. If the total number of cases exceeds `.max` due to combinatoric
75
- // complexity, `count` would be too low; and
76
- // 2. We reserve the right to support async sequences as input in the
77
- // future, and async sequences do not have `count` properties (but an
78
- // underestimated count of `0` is still technically correct.)
79
- testCases? . underestimatedCount
80
- }
81
-
82
56
/// The type containing this test, if any.
83
57
///
84
58
/// If a test is associated with a free function or static function, the value
0 commit comments