@@ -190,7 +190,7 @@ ${kw} HasCustomRepresentation_Generic${name}<Wrapped>
190
190
% for name in [ 'Class', 'PODStruct', 'RCStruct' ]:
191
191
% wrapped = 'HasCustomRepresentation_%s' % name
192
192
% genericWrapped = 'HasCustomRepresentation_Generic%s' % name
193
- AnyHashableTests.test("AnyHashable with ${wrapped}") {
193
+ AnyHashableTests.test("AnyHashable containing ${wrapped}") {
194
194
let xs = (-2...2).flatMap {
195
195
[ ${wrapped}(
196
196
$0, identity: 0,
@@ -207,7 +207,7 @@ AnyHashableTests.test("AnyHashable with ${wrapped}") {
207
207
}
208
208
209
209
% for payload in [ 'OpaqueValue<Int>', 'LifetimeTracked' ]:
210
- AnyHashableTests.test("AnyHashable with ${genericWrapped} with ${payload}") {
210
+ AnyHashableTests.test("AnyHashable containing ${genericWrapped} with ${payload}") {
211
211
GenericMinimalHashableValue_equalImpl.value = {
212
212
($0 as! ${payload}).value == ($1 as! ${payload}).value
213
213
}
@@ -256,7 +256,7 @@ struct HasCustomRepresentationRecursively
256
256
}
257
257
}
258
258
259
- AnyHashableTests.test("AnyHashable with recursive custom representations") {
259
+ AnyHashableTests.test("AnyHashable containing values with recursive custom representations") {
260
260
GenericMinimalHashableValue_equalImpl.value = {
261
261
($0 as! ${payload}).value == ($1 as! ${payload}).value
262
262
}
@@ -386,7 +386,7 @@ class ${Self.full_name} : ${Super.full_name} {}
386
386
% end
387
387
% end
388
388
389
- AnyHashableTests.test("AnyHashable with classes from the ${prefix} hierarchy") {
389
+ AnyHashableTests.test("AnyHashable containing classes from the ${prefix} hierarchy") {
390
390
typealias T = Int
391
391
let xs = [
392
392
% for (i, (Self, _)) in enumerate(types):
@@ -463,7 +463,7 @@ let interestingBitVectorArrays: [[UInt8]] = [
463
463
[0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88],
464
464
]
465
465
466
- AnyHashableTests.test("AnyHashable with CFBitVector") {
466
+ AnyHashableTests.test("AnyHashable containing CFBitVector") {
467
467
let bitVectors: [CFBitVector] =
468
468
interestingBitVectorArrays.map(CFBitVector.makeImmutable)
469
469
let arrays = bitVectors.map { $0.asArray }
@@ -490,7 +490,7 @@ AnyHashableTests.test("AnyHashable with CFBitVector") {
490
490
equalityOracle: { $0 == $1 })
491
491
}
492
492
493
- AnyHashableTests.test("AnyHashable with CFMutableBitVector") {
493
+ AnyHashableTests.test("AnyHashable containing CFMutableBitVector") {
494
494
// CFMutableBitVector inherits the Hashable conformance from
495
495
// CFBitVector.
496
496
let bitVectors: [CFMutableBitVector] =
0 commit comments