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: Sources/PropertyBased/FixedSeedTrait.swift
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@
8
8
import Gen
9
9
import Testing
10
10
11
-
/// A trait that overrides the seed used by all property tests within a Test.
11
+
/// A trait that overrides the seed used by all property checks within a Test.
12
12
///
13
13
/// Use ``fixedSeed(_:sourceLocation:)`` to construct an instance of this trait.
14
14
publicstructFixedSeedTrait:TestTrait,TestScoping{
@@ -38,11 +38,11 @@ public struct FixedSeedTrait: TestTrait, TestScoping {
38
38
}
39
39
40
40
extensionTraitwhere Self ==FixedSeedTrait{
41
-
/// Override the seed used by all property tests within this Test.
41
+
/// Override the seed used by all property checks within this Test.
42
42
///
43
-
/// If one of your property tests fails intermittently, apply this trait to reliably reproduce the issue.
43
+
/// If one of your property checks fails intermittently, apply this trait to reliably reproduce the issue.
44
44
///
45
-
/// > Important: Do not commit usages of this trait into version control. This trait will always report an issue regardless of the existence of any failures within the test.
45
+
/// > Important: Do not commit usages of this trait into version control. Applying this trait will always report an issue regardless of the existence of any failures within the test.
0 commit comments